search for: hvvx

Displaying 1 result from an estimated 1 matches for "hvvx".

Did you mean: hvx
2016 Jul 22
1
[PATCH] static const char *str -> static const char str
...}, { "connect", 1, 0, 'c' }, diff --git a/diff/diff.c b/diff/diff.c index 7469d65..72f197f 100644 --- a/diff/diff.c +++ b/diff/diff.c @@ -144,7 +144,7 @@ main (int argc, char *argv[]) enum { HELP_OPTION = CHAR_MAX + 1 }; - static const char *options = "a:A:c:d:D:hvVx"; + static const char options[] = "a:A:c:d:D:hvVx"; static const struct option long_options[] = { { "add", 1, 0, 'a' }, { "all", 0, 0, 0 }, diff --git a/edit/edit.c b/edit/edit.c index eb9dfbd..8a0c00c 100644 --- a/edit/edit.c +++ b/edit/edit...