]> granicus.if.org Git - graphviz/commitdiff
gv2gxl _xml_string: use 'size_t' to track buffer size
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 17 Sep 2021 03:47:04 +0000 (20:47 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 19 Sep 2021 23:21:06 +0000 (16:21 -0700)
Squashes -Wconversion warnings.

cmd/tools/gv2gxl.c

index 5f55146a3badbff93ba5b000105e50a5a415e230..6e359f2fc92325c9be192c1a7674ea5ac67da353 100644 (file)
@@ -11,7 +11,7 @@
 
 #include "convert.h"
 #include <ctype.h>
-#include <stddef.h>
+#include <stdlib.h>
 
 #define SMALLBUF    128
 
@@ -183,9 +183,9 @@ static int xml_isentity(char *s)
 static char *_xml_string(char *s, int notURL)
 {
     static char *buf = NULL;
-    static int bufsize = 0;
+    static size_t bufsize = 0;
     char *p, *sub, *prev = NULL;
-    int len, pos = 0;
+    size_t len, pos = 0;
 
     if (!buf) {
        bufsize = 64;