search for: hlvvx

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

Did you mean: lvvx
2016 Jul 22
1
[PATCH] static const char *str -> static const char str
...nect", 1, 0, 'c' }, diff --git a/cat/filesystems.c b/cat/filesystems.c index cfdac86..ab24f2d 100644 --- a/cat/filesystems.c +++ b/cat/filesystems.c @@ -137,7 +137,7 @@ main (int argc, char *argv[]) enum { HELP_OPTION = CHAR_MAX + 1 }; - static const char *options = "a:c:d:hlvVx"; + static const char options[] = "a:c:d:hlvVx"; static const struct option long_options[] = { { "add", 1, 0, 'a' }, { "all", 0, 0, 0 }, diff --git a/cat/log.c b/cat/log.c index 6632f5a..bacd8b6 100644 --- a/cat/log.c +++ b/cat/log.c @@ -95,7...