aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2000-10-23 18:03:46 +0000
committerMatt Kraai <kraai@debian.org>2000-10-23 18:03:46 +0000
commit207061ac0d400f663dc411c132d7fc07dca7d496 (patch)
tree4d50f76923e65e6247dc399f20b37c5c1bc79487 /coreutils
parent2be4797a06849cf5c9c4f97e1489d70b7fc8be36 (diff)
downloadbusybox-207061ac0d400f663dc411c132d7fc07dca7d496.tar.gz
Fix error messages.
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)
free(line);
if (ferror(checkfile_stream)) {
- errorMsg("%s: read error", checkfile_name); /* */
+ errorMsg("%s: read error\n", checkfile_name); /* */
return FALSE;
}
@@ -991,12 +991,12 @@ int md5sum_main(int argc,
}
if (fclose (stdout) == EOF) {
- errorMsg("write error");
+ errorMsg("write error\n");
exit FALSE;
}
if (have_read_stdin && fclose (stdin) == EOF) {
- errorMsg("standard input");
+ errorMsg("standard input\n");
exit FALSE;
}