From 7a75b560b4ae5132ab9ff7a3dc724decef8c9a21 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sun, 24 Oct 2021 10:48:13 -0700 Subject: [PATCH] gdgen_polygon: swap booleans for C99 bools --- plugin/gd/gvrender_gd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.40.0