aboutsummaryrefslogtreecommitdiff
path: root/md5sum.c
diff options
context:
space:
mode:
authorkraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-10-23 18:03:46 +0000
committerkraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-10-23 18:03:46 +0000
commit145d85580179f37ef4803f143c568f16407370cb (patch)
tree4d50f76923e65e6247dc399f20b37c5c1bc79487 /md5sum.c
parentde43f7475207db16f6aca6ed70d579a0e4671506 (diff)
downloadbusybox-w32-145d85580179f37ef4803f143c568f16407370cb.tar.gz
busybox-w32-145d85580179f37ef4803f143c568f16407370cb.tar.bz2
busybox-w32-145d85580179f37ef4803f143c568f16407370cb.zip
Fix error messages.
git-svn-id: svn://busybox.net/trunk/busybox@1222 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'md5sum.c')
-rw-r--r--md5sum.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/md5sum.c b/md5sum.c
index c7e540223..21570de93 100644
--- a/md5sum.c
+++ b/md5sum.c
@@ -810,7 +810,7 @@ static int md5_check(const char *checkfile_name)
810 free(line); 810 free(line);
811 811
812 if (ferror(checkfile_stream)) { 812 if (ferror(checkfile_stream)) {
813 errorMsg("%s: read error", checkfile_name); /* */ 813 errorMsg("%s: read error\n", checkfile_name); /* */
814 return FALSE; 814 return FALSE;
815 } 815 }
816 816
@@ -991,12 +991,12 @@ int md5sum_main(int argc,
991 } 991 }
992 992
993 if (fclose (stdout) == EOF) { 993 if (fclose (stdout) == EOF) {
994 errorMsg("write error"); 994 errorMsg("write error\n");
995 exit FALSE; 995 exit FALSE;
996 } 996 }
997 997
998 if (have_read_stdin && fclose (stdin) == EOF) { 998 if (have_read_stdin && fclose (stdin) == EOF) {
999 errorMsg("standard input"); 999 errorMsg("standard input\n");
1000 exit FALSE; 1000 exit FALSE;
1001 } 1001 }
1002 1002