diff options
author | Steven Schubiger <stsc@refcnt.org> | 2015-03-02 15:26:05 +0100 |
---|---|---|
committer | Steven Schubiger <stsc@refcnt.org> | 2015-03-02 15:26:05 +0100 |
commit | 35fbd9e9d339d3c338f089cb9802b152c3dc01fd (patch) | |
tree | f7cabc8f7b3dc24c1d43053d80556e109e96717a /colorize.c | |
parent | a61494ccfa8ca882455a194193c432aeb204ea44 (diff) | |
download | colorize-35fbd9e9d339d3c338f089cb9802b152c3dc01fd.tar.gz colorize-35fbd9e9d339d3c338f089cb9802b152c3dc01fd.tar.bz2 |
Convert short version option to uppercase
Diffstat (limited to 'colorize.c')
-rw-r--r-- | colorize.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -286,7 +286,7 @@ main (int argc, char **argv) log = open_file (DEBUG_FILE, "w"); #endif - while ((opt = getopt_long (argc, argv, "hv", long_opts, NULL)) != -1) + while ((opt = getopt_long (argc, argv, "hV", long_opts, NULL)) != -1) { PARSE_OPT: switch (opt) @@ -330,7 +330,7 @@ main (int argc, char **argv) break; case 'h': SET_OPT_TYPE (OPT_HELP); - case 'v': + case 'V': SET_OPT_TYPE (OPT_VERSION); case '?': print_hint (); @@ -411,7 +411,7 @@ print_help (void) printf ("\t\t --clean-all\n"); printf ("\t\t --exclude-random\n"); printf ("\t\t-h, --help\n"); - printf ("\t\t-v, --version\n\n"); + printf ("\t\t-V, --version\n\n"); } static void |