diff options
author | Bernhard Voelker <mail@bernhard-voelker.de> | 2014-02-26 08:36:50 +0100 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2014-02-26 11:26:24 +0000 |
commit | 5475e6083f46a2f9f7ccf4173f391bf518421523 (patch) | |
tree | 109e1a268ca9cfa1a167928ac4728965ed3a5609 /src | |
parent | df5e69705f66e4fc6bcd939846bc4fb2de90a614 (diff) | |
download | coreutils-5475e6083f46a2f9f7ccf4173f391bf518421523.tar.xz |
shuf: convert error diagnostic to lowercase
* src/shuf.c (main): s/No/no/, introduced by commit v8.22-25-g9f60f37.
* NEWS: Also adjust the NEWS for that recent commit to make it
clear this was new bug rather than a regression.
Prompted by the syntax-check rule sc_error_message_uppercase
Diffstat (limited to 'src')
-rw-r--r-- | src/shuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shuf.c b/src/shuf.c index 2a910728e..6ae075549 100644 --- a/src/shuf.c +++ b/src/shuf.c @@ -581,7 +581,7 @@ main (int argc, char **argv) else { if (n_lines == 0) - error (EXIT_FAILURE, 0, _("No lines to repeat")); + error (EXIT_FAILURE, 0, _("no lines to repeat")); if (input_range) i = write_random_numbers (randint_source, head_lines, lo_input, hi_input, eolbyte); |