]> granicus.if.org Git - graphviz/commitdiff
validlayer: use a C99 bool return type instead of boolean
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 29 Aug 2021 23:29:57 +0000 (16:29 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 4 Sep 2021 02:28:19 +0000 (19:28 -0700)
lib/common/emit.c

index 8183eb49ce78d7da765c3ccbb4d8e56b39c9deac..88b7d3cfca7030d247001f459b38953d5ced7668 100644 (file)
@@ -1246,7 +1246,7 @@ static void firstlayer(GVJ_t *job, int** listp)
     }
 }
 
-static boolean validlayer(GVJ_t *job)
+static bool validlayer(GVJ_t *job)
 {
     return (job->layerNum <= job->numLayers);
 }