This is the mail archive of the
binutils@sourceware.org
mailing list for the binutils project.
[patch] strings --include-all-whitespace doesn't take an argument
- From: Matthias Klose <doko at debian dot org>
- To: binutils <binutils at sourceware dot org>
- Date: Thu, 15 Feb 2018 08:37:25 +0700
- Subject: [patch] strings --include-all-whitespace doesn't take an argument
- Authentication-results: sourceware.org; auth=none
strings --include-all-whitespace doesn't take an argument, fix the behavior
according to the documentation.
binutils/
* strings.c(long_options): include-all-whitespace does not take
an extra agument.
binutils/
* strings.c(long_options): include-all-whitespace does not take
an extra agument.
--- a/binutils/strings.c
+++ b/binutils/strings.c
@@ -125,7 +125,7 @@ static struct option long_options[] =
{"print-file-name", no_argument, NULL, 'f'},
{"bytes", required_argument, NULL, 'n'},
{"radix", required_argument, NULL, 't'},
- {"include-all-whitespace", required_argument, NULL, 'w'},
+ {"include-all-whitespace", no_argument, NULL, 'w'},
{"encoding", required_argument, NULL, 'e'},
{"target", required_argument, NULL, 'T'},
{"output-separator", required_argument, NULL, 's'},