From: Matthew Fernandez Date: Sun, 24 Oct 2021 17:48:13 +0000 (-0700) Subject: gdgen_polygon: swap booleans for C99 bools X-Git-Tag: 2.50.0~59^2~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7a75b560b4ae5132ab9ff7a3dc724decef8c9a21;p=graphviz gdgen_polygon: swap booleans for C99 bools --- diff --git a/plugin/gd/gvrender_gd.c b/plugin/gd/gvrender_gd.c index 3cf320c25..9958796c5 100644 --- a/plugin/gd/gvrender_gd.c +++ b/plugin/gd/gvrender_gd.c @@ -502,7 +502,7 @@ static void gdgen_polygon(GVJ_t * job, pointf * A, int n, int filled) gdImagePtr brush = NULL; int i; int pen; - boolean pen_ok, fill_ok; + bool pen_ok, fill_ok; if (!im) return;