summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-01-26 18:50:33 +0000
committerJim Meyering <jim@meyering.net>1997-01-26 18:50:33 +0000
commit072c1efe39b33b21bac232930262e1b489993f6e (patch)
tree6ae34ee14cbb8670df6df056ed5c38a393b1309a /src
parentc38939be8e6ebf989bf99a8abb1c2b8cb3c4533f (diff)
downloadcoreutils-072c1efe39b33b21bac232930262e1b489993f6e.tar.xz
(parse_options): Add quotes to make messages identical.
Diffstat (limited to 'src')
-rw-r--r--src/tail.c2
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"));
}