diff options
author | Leah Neukirchen <leah@vuxu.org> | 2018-07-08 17:13:43 +0200 |
---|---|---|
committer | Leah Neukirchen <leah@vuxu.org> | 2018-07-08 17:13:43 +0200 |
commit | 0d397f6790a36cc734261efdd0c80d33cbd7fb45 (patch) | |
tree | 36f04c140d57a101bde50a18e6eed15902befa89 | |
parent | 98918783aa5f5dce36f4066bd1941a3f5af4bbdf (diff) | |
download | mblaze-0d397f6790a36cc734261efdd0c80d33cbd7fb45.tar.gz mblaze-0d397f6790a36cc734261efdd0c80d33cbd7fb45.tar.xz mblaze-0d397f6790a36cc734261efdd0c80d33cbd7fb45.zip |
mdeliver: fix stray whitespace
-rw-r--r-- | mdeliver.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mdeliver.c b/mdeliver.c index c020f34..2d0511a 100644 --- a/mdeliver.c +++ b/mdeliver.c @@ -89,7 +89,7 @@ tryagain: if (errno == EEXIST) goto tryagain; fprintf(stderr, "mrefile: %s: %s\n", - tmp, strerror(errno)); + tmp, strerror(errno)); return -1; } @@ -195,7 +195,7 @@ refile(char *file) FILE *f = fopen(file, "r"); if (!f) { - fprintf(stderr, "mrefile: %s: %s\n", file, strerror(errno)); + fprintf(stderr, "mrefile: %s: %s\n", file, strerror(errno)); return; } |