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

index 386b1f23d4aafd24d4c38f125e7aa80eb25f96ec..4fec5e874b99c1ca65808d1b7b6bafe8f92b86ab 100644 (file)
@@ -248,7 +248,7 @@ static void init(int argc, char *argv[])
 
     CmdName = argv[0];
     opterr = 0;
-    while ((c = getopt(argc, argv, "vr")) != -1) {
+    while ((c = getopt(argc, argv, "vr?")) != -1) {
        switch (c) {
        case 'v':
            Verbose = 1;
@@ -257,7 +257,7 @@ static void init(int argc, char *argv[])
         PrintRemovedEdges = 1;
         break;
        case '?':
-           if (optopt == '?')
+           if (optopt == '\0')
                usage(0);
            else {
                fprintf(stderr, "%s: option -%c unrecognized\n",