aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/md5sum.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/md5sum.c b/coreutils/md5sum.c
index c7e540223..21570de93 100644
--- a/coreutils/md5sum.c
+++ b/coreutils/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