]> granicus.if.org Git - graphviz/commitdiff
gvplugin_list: use a C99 bool for 'new' instead of boolean
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 27 Dec 2021 03:02:29 +0000 (19:02 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 5 Jan 2022 16:04:04 +0000 (08:04 -0800)
lib/gvc/gvplugin.c

index 7ea4614f83e2a0cef95e9d7879a0bfa85c9616a2..31218fb9992bf3e85d64b157979e98838a6ae421 100644 (file)
@@ -353,7 +353,7 @@ char *gvplugin_list(GVC_t * gvc, api_t api, const char *str)
     const gvplugin_available_t *pnext, *plugin;
     char *bp;
     char *s, *p, *q, *typestr_last;
-    boolean new = TRUE;
+    bool new = true;
     static agxbuf xb;
 
     /* check for valid str */
@@ -384,7 +384,7 @@ char *gvplugin_list(GVC_t * gvc, api_t api, const char *str)
             if (!s[0] || strcasecmp(s, q) == 0) {
                 /* list each member of the matching type as "type:path" */
                 agxbprint(&xb, " %s:%s", pnext->typestr, pnext->package->name);
-                new = FALSE;
+                new = false;
             }
             free(q);
         }
@@ -401,7 +401,7 @@ char *gvplugin_list(GVC_t * gvc, api_t api, const char *str)
             if (!typestr_last || strcasecmp(typestr_last, q) != 0) {
                 /* list it as "type"  i.e. w/o ":path" */
                 agxbprint(&xb, " %s", q);
-                new = FALSE;
+                new = false;
             }
             free(typestr_last);
             typestr_last = q;