From: Jim Meyering Date: Mon, 22 Apr 1996 03:00:52 +0000 (+0000) Subject: (md5_check): Remove spurious `\n' at end of error format string. X-Git-Tag: TEXTUTILS-1_14c~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=50b029f4d95e9ae98330c1071aca87025dadbfb1;p=thirdparty%2Fcoreutils.git (md5_check): Remove spurious `\n' at end of error format string. --- diff --git a/src/md5sum.c b/src/md5sum.c index b15dd90ace..c32cb405cf 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")); }