search for: 2dbaa4d

Displaying 2 results from an estimated 2 matches for "2dbaa4d".

Did you mean: 2dba15d
2016 Jul 18
0
[PATCH] format: Remove unimplemented virt-format -c, -d and -q options.
These options just give errors because they appear in the short options list but not in the case statement. --- format/format.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/format/format.c b/format/format.c index 5026aff..2dbaa4d 100644 --- a/format/format.c +++ b/format/format.c @@ -104,7 +104,7 @@ main (int argc, char *argv[]) enum { HELP_OPTION = CHAR_MAX + 1 }; - static const char *options = "a:c:d:qvVx"; + static const char *options = "a:vVx"; static const struct option long_options[] =...
2016 Jul 22
1
[PATCH] static const char *str -> static const char str
...t;a:c:d:Df:h::im:nN:rvVwx"; + static const char options[] = "a:c:d:Df:h::im:nN:rvVwx"; static const struct option long_options[] = { { "add", 1, 0, 'a' }, { "cmd-help", 2, 0, 'h' }, diff --git a/format/format.c b/format/format.c index 2dbaa4d..5933aeb 100644 --- a/format/format.c +++ b/format/format.c @@ -104,7 +104,7 @@ main (int argc, char *argv[]) enum { HELP_OPTION = CHAR_MAX + 1 }; - static const char *options = "a:vVx"; + static const char options[] = "a:vVx"; static const struct option long_options...