]> granicus.if.org Git - graphviz/commitdiff
gvrender_core_pic.c: use a C99 bool for global 'onetime'
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 12 Jan 2022 03:35:08 +0000 (19:35 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 12 Jan 2022 15:51:30 +0000 (07:51 -0800)
plugin/core/gvrender_core_pic.c

index b5d26f98ab285f9062fc162af34d1807a8b012bc..fc303b2fe1e75d46b5b363c76e27c6e77ec8a94e 100644 (file)
@@ -10,6 +10,7 @@
 
 #include "config.h"
 
+#include <stdbool.h>
 #include <stdlib.h>
 #include <string.h>
 #include <stdarg.h>
@@ -29,7 +30,7 @@
 
 typedef enum { FORMAT_PIC, } format_type;
 
-static int onetime = TRUE;
+static bool onetime = true;
 static double Fontscale;
 
 /* There are a couple of ways to generate output: 
@@ -195,7 +196,7 @@ static void pic_begin_page(GVJ_t * job)
 
     if (onetime && job->rotation && (job->rotation != 90)) {
         unsupported("rotation");
-        onetime = FALSE;
+        onetime = false;
     }
     height = PS2INCH((double) (pbr.UR.y) - (double) (pbr.LL.y));
     width = PS2INCH((double) (pbr.UR.x) - (double) (pbr.LL.x));