summaryrefslogtreecommitdiff
path: root/src/md5sum.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1996-04-22 03:00:52 +0000
committerJim Meyering <jim@meyering.net>1996-04-22 03:00:52 +0000
commit50b029f4d95e9ae98330c1071aca87025dadbfb1 (patch)
tree8d54bfa68dbecdd45db7360ae498a992fbcb2cd3 /src/md5sum.c
parentc07d15973c72e28ced5134c7614ff43e78789ead (diff)
downloadcoreutils-50b029f4d95e9ae98330c1071aca87025dadbfb1.tar.xz
(md5_check): Remove spurious `\n' at end of error format string.
Diffstat (limited to 'src/md5sum.c')
-rw-r--r--src/md5sum.c2
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"));
}