summaryrefslogtreecommitdiff
path: root/src/tail.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-02-16 14:31:39 +0000
committerJim Meyering <jim@meyering.net>1997-02-16 14:31:39 +0000
commitfeb2f918b3b847dc00be302d76f2e2a1839cc4ad (patch)
tree2be1333e43e3e07f3222f4b0925306c13b1fd9bd /src/tail.c
parent6bdbdae68cf04732179f81f3f61d1743d8f9749f (diff)
downloadcoreutils-feb2f918b3b847dc00be302d76f2e2a1839cc4ad.tar.xz
(parse_obsolescent_option): Reverse order of args in diagnostic.
Remove `' quotes in diagnostic. (parse_options): Remove `' quotes in diagnostic.
Diffstat (limited to 'src/tail.c')
-rw-r--r--src/tail.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/tail.c b/src/tail.c
index 0252430f5..d9ecb6dcf 100644
--- a/src/tail.c
+++ b/src/tail.c
@@ -965,9 +965,10 @@ parse_obsolescent_option (int argc, const char *const *argv,
n_string_tmp[len] = '\0';
error (0, 0,
- _("%s: `%s' is so large that it is not representable"),
- count_lines ? _("number of lines") : _("number of bytes"),
- n_string_tmp);
+ _("%s: %s is so large that it is not representable"),
+ n_string_tmp, (count_lines
+ ? _("number of lines")
+ : _("number of bytes"));
free (n_string_tmp);
*fail = 1;
}
@@ -1030,7 +1031,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"));
}