]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(elide_tail_bytes_pipe): Correct wording in diagnostic.
authorJim Meyering <jim@meyering.net>
Sun, 30 Jan 2005 17:57:24 +0000 (17:57 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 30 Jan 2005 17:57:24 +0000 (17:57 +0000)
src/head.c

index cdc21d6acbeb339961d25c90e6fbcae700c1c9f3..b641f84a2cb2f9ee9f22d5e1890ad6cd0488da62 100644 (file)
@@ -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));
     }