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

index 8cedc8a6692f1383151696c0f33fa75130577c9a..68f638997a0079f6d91204966a08e3291f3892aa 100644 (file)
@@ -136,7 +136,7 @@ static void init(int argc, char *argv[])
 
     Cmd = argv[0];
     opterr = 0;
-    while ((c = getopt(argc, argv, ":zo:xCX:nesv")) != -1) {
+    while ((c = getopt(argc, argv, ":zo:xCX:nesv?")) != -1) {
        switch (c) {
        case 'o':
            outfile = optarg;
@@ -205,7 +205,7 @@ static void init(int argc, char *argv[])
                "ccomps: option -%c missing argument - ignored\n", optopt);
            break;
        case '?':
-           if (optopt == '?')
+           if (optopt == '\0')
                usage(0);
            else {
                fprintf(stderr,