]> granicus.if.org Git - graphviz/commitdiff
gv_nodesize: [nfc] take a C99 bool instead of a boolean
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 20 Dec 2021 03:45:27 +0000 (19:45 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 25 Dec 2021 18:38:17 +0000 (10:38 -0800)
lib/common/postproc.c
lib/common/utils.c
lib/common/utils.h

index 1daa7a8aedb3fda0c44c0d21314857f69f6c997c..2de11d245bb7653e6f284258ac15bfab102b7e88 100644 (file)
@@ -152,7 +152,7 @@ static void translate_drawing(graph_t * g)
        return;
     for (v = agfstnode(g); v; v = agnxtnode(g, v)) {
        if (Rankdir)
-           gv_nodesize(v, FALSE);
+           gv_nodesize(v, false);
        ND_coord(v) = map_point(ND_coord(v));
        if (ND_xlabel(v))
            ND_xlabel(v)->pos = map_point(ND_xlabel(v)->pos);
index 80a07af2a8a8932c8be5640932323076aab84b11..742e3e9d86faf541465749573d86d0b4c464907b 100644 (file)
@@ -1838,7 +1838,7 @@ void gv_cleanup_node(node_t * n)
        agdelrec(n, "Agnodeinfo_t");
 }
 
-void gv_nodesize(node_t * n, boolean flip)
+void gv_nodesize(node_t * n, bool flip)
 {
     double w;
 
index d6e54c0b7fcbc5d9d2cb5e81d625202a5726de51..61bc6816db9d87a4e14b856a77fdf249c0398ff0 100644 (file)
@@ -123,7 +123,7 @@ UTILS_API void setEdgeType(graph_t *g, int dflt);
 UTILS_API int is_a_cluster(Agraph_t *g);
 
 /* from postproc.c */
-UTILS_API void gv_nodesize(Agnode_t *n, boolean flip);
+UTILS_API void gv_nodesize(Agnode_t *n, bool flip);
 
 #ifndef HAVE_DRAND48
 UTILS_API double drand48(void);