summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-01-30 17:57:24 +0000
committerJim Meyering <jim@meyering.net>2005-01-30 17:57:24 +0000
commit708cc3e146eaca0583b54d1fa25e5125cc1e4100 (patch)
treedda02be3c5024db8078f2ac759774b2673dbbc2b /src
parent84f0fef1c7ba82b3a1bcb8d06af9a099f4a0f0c3 (diff)
downloadcoreutils-708cc3e146eaca0583b54d1fa25e5125cc1e4100.tar.xz
(elide_tail_bytes_pipe): Correct wording in diagnostic.
Diffstat (limited to 'src')
-rw-r--r--src/head.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/head.c b/src/head.c
index cdc21d6ac..b641f84a2 100644
--- a/src/head.c
+++ b/src/head.c
@@ -1,5 +1,5 @@
/* head -- output first part of file(s)
- Copyright (C) 89, 90, 91, 1995-2004 Free Software Foundation, Inc.
+ Copyright (C) 89, 90, 91, 1995-2005 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -231,7 +231,7 @@ elide_tail_bytes_pipe (const char *filename, int fd, uintmax_t n_elide_0)
if (SIZE_MAX < n_elide_0 + READ_BUFSIZE)
{
char umax_buf[INT_BUFSIZE_BOUND (uintmax_t)];
- error (EXIT_FAILURE, 0, _("%s: number of bytes is large"),
+ error (EXIT_FAILURE, 0, _("%s: number of bytes is too large"),
umaxtostr (n_elide_0, umax_buf));
}