diff options
author | Jim Meyering <jim@meyering.net> | 1999-01-03 15:47:38 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-01-03 15:47:38 +0000 |
commit | 944dc00d0c64b3232cf5dcc23e8be83ae522bd2e (patch) | |
tree | 3a185396b673c96bce7932de062b5c80aed5b14a | |
parent | e38501be526c819fe1520d6196052e8c6af304b9 (diff) | |
download | coreutils-944dc00d0c64b3232cf5dcc23e8be83ae522bd2e.tar.xz |
(usage): Remove third program_name argument -- there
were only two `%s' in the 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 f6867fc34..5e364b524 100644 --- a/src/md5sum.c +++ b/src/md5sum.c @@ -122,7 +122,7 @@ The sums are computed as described in RFC 1321. When checking, the input\n\ should be a former output of this program. The default mode is to print\n\ a line with checksum, a character indicating type (`*' for binary, ` ' for\n\ text), and name for each FILE.\n"), - program_name, program_name, program_name); + program_name, program_name); puts (_("\nReport bugs to <bug-textutils@gnu.org>.")); } |