diff options
author | Jim Meyering <jim@meyering.net> | 1996-04-22 03:00:52 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-04-22 03:00:52 +0000 |
commit | 50b029f4d95e9ae98330c1071aca87025dadbfb1 (patch) | |
tree | 8d54bfa68dbecdd45db7360ae498a992fbcb2cd3 | |
parent | c07d15973c72e28ced5134c7614ff43e78789ead (diff) | |
download | coreutils-50b029f4d95e9ae98330c1071aca87025dadbfb1.tar.xz |
(md5_check): Remove spurious `\n' at end of error format string.
-rw-r--r-- | src/md5sum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/md5sum.c b/src/md5sum.c index b15dd90ac..c32cb405c 100644 --- a/src/md5sum.c +++ b/src/md5sum.c @@ -370,7 +370,7 @@ md5_check (const char *checkfile_name, int binary) if (n_mismatched_checksums > 0) { error (0, 0, - _("WARNING: %d of %d computed checksum%s did NOT match\n"), + _("WARNING: %d of %d computed checksum%s did NOT match"), n_mismatched_checksums, n_computed_checkums, (n_computed_checkums == 1 ? "" : "s")); } |