]> granicus.if.org Git - graphviz/commitdiff
ccomps: use size_t when dealing with buffer sizes in chkGraphName
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 25 Jul 2021 17:42:28 +0000 (10:42 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Tue, 27 Jul 2021 14:32:00 +0000 (07:32 -0700)
Squashes a -Wconversion and a -Wsign-conversion warning.

cmd/tools/ccomps.c

index 7fddaafa02d5520b4f4f7ec60875a0236c59b7cd..48c279711605919635c27099226a23a9976d3d45 100644 (file)
@@ -895,12 +895,11 @@ static char*
 chkGraphName (Agraph_t* g)
 {
     static char* buf = NULL;
-    static int buflen = 0;
+    static size_t buflen = 0;
     char* s = agnameof(g);
-    int len;
 
     if (*s != '%') return s;
-    len = strlen(s) + 2;   /* plus '\0' and '_' */
+    size_t len = strlen(s) + 2;   /* plus '\0' and '_' */
     if (len > buflen) {
        buf = xrealloc (buf, len);
        buflen = len;