1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-08-05 08:10:15 +02:00

(md5_check): Remove spurious `\n' at end of error format string.

This commit is contained in:
Jim Meyering
1996-04-22 03:00:52 +00:00
parent c07d15973c
commit 50b029f4d9
+1 -1
View File
@@ -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"));
}