search for: ba753ef

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

Did you mean: a7503ef
2016 Jul 18
1
[PATCH] fish, fuse: Remove bogus '?' from short options.
...c:d:im:no:rv?Vwx"; + static const char *options = "a:c:d:im:no:rvVwx"; static const struct option long_options[] = { { "add", 1, 0, 'a' }, { "connect", 1, 0, 'c' }, diff --git a/fuse/guestunmount.c b/fuse/guestunmount.c index dc9428c..ba753ef 100644 --- a/fuse/guestunmount.c +++ b/fuse/guestunmount.c @@ -76,7 +76,7 @@ main (int argc, char *argv[]) { enum { HELP_OPTION = CHAR_MAX + 1 }; - static const char *options = "qv?V"; + static const char *options = "qvV"; static const struct option long_options[] = {...
2016 Jul 22
1
[PATCH] static const char *str -> static const char str
..."a:c:d:im:no:rvVwx"; + static const char options[] = "a:c:d:im:no:rvVwx"; static const struct option long_options[] = { { "add", 1, 0, 'a' }, { "connect", 1, 0, 'c' }, diff --git a/fuse/guestunmount.c b/fuse/guestunmount.c index ba753ef..c686f40 100644 --- a/fuse/guestunmount.c +++ b/fuse/guestunmount.c @@ -76,7 +76,7 @@ main (int argc, char *argv[]) { enum { HELP_OPTION = CHAR_MAX + 1 }; - static const char *options = "qvV"; + static const char options[] = "qvV"; static const struct option long_opti...