]> granicus.if.org Git - graphviz/commitdiff
use a C99 bool for nop’s chkOnly flag
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 29 May 2021 18:05:00 +0000 (11:05 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 5 Jun 2021 00:01:14 +0000 (17:01 -0700)
The semantics of this flag were already a boolean value, so we can use the type
system to more obviously indicate this.

cmd/tools/nop.c

index 92f2f45416cfc162198e9772deba3029e3f0725c..5dea43c864b3faa33aba7665f116073aa6de6931 100644 (file)
@@ -12,6 +12,7 @@
 
 #include <cgraph/cgraph.h>
 #include <ingraphs/ingraphs.h>
+#include <stdbool.h>
 #include <stdio.h>
 #include <stdlib.h>
 #ifdef HAVE_UNISTD_H
@@ -21,7 +22,7 @@
 #include <getopt.h>
 
 char **Files;
-int chkOnly;
+bool chkOnly;
 
 static const char useString[] = "Usage: nop [-p?] <files>\n\
   -p - check for valid DOT\n\
@@ -42,7 +43,7 @@ static void init(int argc, char *argv[])
     while ((c = getopt(argc, argv, "p?")) != -1) {
        switch (c) {
        case 'p':
-           chkOnly = 1;
+           chkOnly = true;
            break;
        case '?':
            if (optopt == '\0' || optopt == '?')