]> git.sesse.net Git - nageru/commitdiff
Remove the -C flag from the getopt string.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 31 Jul 2016 13:56:42 +0000 (15:56 +0200)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 31 Jul 2016 13:56:42 +0000 (15:56 +0200)
flags.cpp

index 2ff7d4b7fb2bd1d926ee2c19a7f27f352fa2ebb2..7a047f49838fbbb8e1df34ee448ea7cafe57a5f9 100644 (file)
--- a/flags.cpp
+++ b/flags.cpp
@@ -135,7 +135,7 @@ void parse_flags(int argc, char * const argv[])
        vector<string> theme_dirs;
        for ( ;; ) {
                int option_index = 0;
-               int c = getopt_long(argc, argv, "c:C:t:v:m:", long_options, &option_index);
+               int c = getopt_long(argc, argv, "c:t:v:m:", long_options, &option_index);
 
                if (c == -1) {
                        break;