]> granicus.if.org Git - graphviz/commitdiff
Explicitly specify -? as an option in gc
authorMagnus Jacobsson <magnus.jacobsson@berotec.se>
Sun, 4 Oct 2020 18:50:53 +0000 (20:50 +0200)
committerMagnus Jacobsson <magnus.jacobsson@berotec.se>
Thu, 8 Oct 2020 19:10:25 +0000 (21:10 +0200)
cmd/tools/gc.c

index 840fbb5f6100383cdbf7574caf0fea2b73be5429..cafe39d3f52db14abef3c0bc394e097f734aefad 100644 (file)
@@ -89,7 +89,7 @@ static void init(int argc, char *argv[])
     unsigned int c;
 
     opterr = 0;
-    while ((c = getopt(argc, argv, "necCaDUrsv")) != -1) {
+    while ((c = getopt(argc, argv, "necCaDUrsv?")) != -1) {
        switch (c) {
        case 'e':
            flags |= EDGES;
@@ -123,7 +123,7 @@ static void init(int argc, char *argv[])
            gtype = UNDIRECTED;
            break;
        case '?':
-           if (optopt == '?')
+           if (optopt == '\0')
                usage(0);
            else {
                fprintf(stderr, "gc: option -%c unrecognized\n",