]> granicus.if.org Git - graphviz/commitdiff
Resolve four warnings in grammar.y
authorErwin Janssen <erwinjanssen@outlook.com>
Thu, 1 Sep 2016 16:41:48 +0000 (18:41 +0200)
committerErwin Janssen <erwinjanssen@outlook.com>
Thu, 1 Sep 2016 16:41:48 +0000 (18:41 +0200)
Setting the proper type for `len` resolved them.

lib/cgraph/grammar.y

index 2f3f807bbc600bd32d0cbd45c0fc69f741e0e323..6d83a9f91179999d1fcc3debf82ebb8168542d91 100644 (file)
@@ -452,7 +452,7 @@ concat (char* s1, char* s2)
   char*  s;
   char   buf[BUFSIZ];
   char*  sym;
-  int    len = strlen(s1) + strlen(s2) + 1;
+  size_t len = strlen(s1) + strlen(s2) + 1;
 
   if (len <= BUFSIZ) sym = buf;
   else sym = (char*)malloc(len);
@@ -473,7 +473,7 @@ concatPort (char* s1, char* s2)
   char*  s;
   char   buf[BUFSIZ];
   char*  sym;
-  int    len = strlen(s1) + strlen(s2) + 2;  /* one more for ':' */
+  size_t len = strlen(s1) + strlen(s2) + 2;  /* one more for ':' */
 
   if (len <= BUFSIZ) sym = buf;
   else sym = (char*)malloc(len);