mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-02 20:53:06 +08:00
Fix mistake in the declaration of the --include-all-whitespace option of the strings utility.
* strings.c (long_options): Include-all-whitespace does not take an extra agument.
This commit is contained in:

committed by
Nick Clifton

parent
b5884fa710
commit
e535d0ddb3
@ -1,3 +1,8 @@
|
|||||||
|
2018-02-19 Matthias Klose <doko@debian.org>
|
||||||
|
|
||||||
|
* strings.c (long_options): Include-all-whitespace does not take
|
||||||
|
an extra agument.
|
||||||
|
|
||||||
2018-02-13 Alan Modra <amodra@gmail.com>
|
2018-02-13 Alan Modra <amodra@gmail.com>
|
||||||
|
|
||||||
PR 22836
|
PR 22836
|
||||||
|
@ -125,7 +125,7 @@ static struct option long_options[] =
|
|||||||
{"print-file-name", no_argument, NULL, 'f'},
|
{"print-file-name", no_argument, NULL, 'f'},
|
||||||
{"bytes", required_argument, NULL, 'n'},
|
{"bytes", required_argument, NULL, 'n'},
|
||||||
{"radix", required_argument, NULL, 't'},
|
{"radix", required_argument, NULL, 't'},
|
||||||
{"include-all-whitespace", required_argument, NULL, 'w'},
|
{"include-all-whitespace", no_argument, NULL, 'w'},
|
||||||
{"encoding", required_argument, NULL, 'e'},
|
{"encoding", required_argument, NULL, 'e'},
|
||||||
{"target", required_argument, NULL, 'T'},
|
{"target", required_argument, NULL, 'T'},
|
||||||
{"output-separator", required_argument, NULL, 's'},
|
{"output-separator", required_argument, NULL, 's'},
|
||||||
|
Reference in New Issue
Block a user