diff options
author | Jim Meyering <jim@meyering.net> | 1997-01-26 18:50:33 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1997-01-26 18:50:33 +0000 |
commit | 072c1efe39b33b21bac232930262e1b489993f6e (patch) | |
tree | 6ae34ee14cbb8670df6df056ed5c38a393b1309a | |
parent | c38939be8e6ebf989bf99a8abb1c2b8cb3c4533f (diff) | |
download | coreutils-072c1efe39b33b21bac232930262e1b489993f6e.tar.xz |
(parse_options): Add quotes to make messages identical.
-rw-r--r-- | src/tail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tail.c b/src/tail.c index 06903e000..f63fb06fb 100644 --- a/src/tail.c +++ b/src/tail.c @@ -1023,7 +1023,7 @@ parse_options (int argc, char **argv, if (s_err != LONGINT_OK || tmp_ulong > OFF_T_MAX) { error (EXIT_FAILURE, 0, - _("%s: %s is so large that it is not representable"), + _("%s: `%s' is so large that it is not representable"), optarg, c == 'n' ? _("number of lines") : _("number of bytes")); } |