]> granicus.if.org Git - graphviz/commitdiff
replace noclusterinfo boolean with a C99 bool
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 24 Apr 2021 04:34:41 +0000 (21:34 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 14 May 2021 00:03:36 +0000 (17:03 -0700)
lib/sparse/DotIO.c

index 093c3f6e30c9f949ab7915828c7153d023a05573..94b7592508f2d47a8b976e29945df6e8c3debf8f 100644 (file)
@@ -699,7 +699,8 @@ SparseMatrix Import_coord_clusters_from_dot(Agraph_t* g, int maxcluster, int dim
   char scluster[100];
   float ff;
 
-  int MAX_GRPS, MIN_GRPS, noclusterinfo = FALSE, first = TRUE;
+  int MAX_GRPS, MIN_GRPS, first = TRUE;
+  bool noclusterinfo = false;
   float *pal;
   int max_color = MAX_COLOR;
 
@@ -825,13 +826,13 @@ SparseMatrix Import_coord_clusters_from_dot(Agraph_t* g, int maxcluster, int dim
          MIN_GRPS = MIN(MIN_GRPS, ic);
         }
       } else {
-        noclusterinfo = TRUE;
+        noclusterinfo = true;
         break;
       }
     }
   }
   else 
-    noclusterinfo = TRUE;
+    noclusterinfo = true;
   MAX_GRPS = nc;
 
   if (noclusterinfo) {