diff options
author | Jim Meyering <jim@meyering.net> | 1999-08-22 09:43:25 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-08-22 09:43:25 +0000 |
commit | bab0581788975e825ad407a68300100efc91e158 (patch) | |
tree | 7befbcbbb844e4f3c46f344a249e115c36cf2047 | |
parent | e23b3347137cd851d3e7a4e4a0f34467589fdbab (diff) | |
download | coreutils-bab0581788975e825ad407a68300100efc91e158.tar.xz |
(md5_check): Remove trailing `\n' in error format.
-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 dccf90977..afdb2406e 100644 --- a/src/md5sum.c +++ b/src/md5sum.c @@ -425,7 +425,7 @@ md5_check (const char *checkfile_name) if (n_open_or_read_failures > 0) { error (0, 0, - _("WARNING: %d of %d listed %s could not be read\n"), + _("WARNING: %d of %d listed %s could not be read"), n_open_or_read_failures, n_properly_formated_lines, (n_properly_formated_lines == 1 ? _("file") : _("files"))); |