]> granicus.if.org Git - graphviz/commitdiff
Resolved 24 warnings in tclpathplan.c
authorErwin Janssen <erwinjanssen@outlook.com>
Thu, 1 Sep 2016 20:54:03 +0000 (22:54 +0200)
committerErwin Janssen <erwinjanssen@outlook.com>
Thu, 1 Sep 2016 20:54:03 +0000 (22:54 +0200)
Changed the type of some local variables from `int` to `size_t`.

tclpkg/tclpathplan/tclpathplan.c

index 3d893217e89ad82029fec60ebe0b133ac85cd04e..308d1f27b97bb973585485544d868851509dad16 100644 (file)
@@ -221,7 +221,7 @@ static char *buildBindings(char *s1, char *s2)
  */
 {
     char *s3;
-    int l;
+    size_t l;
 
     if (s2[0] == '+') {
        if (s1) {
@@ -413,7 +413,7 @@ static int
 vgpanecmd(ClientData clientData, Tcl_Interp * interp, int argc,
          char *argv[])
 {
-    int vargc, length, i, j, n, result;
+    int vargc, i, j, n, result;
     char c, *s, **vargv, vbuf[30];
     vgpane_t *vgp, **vgpp;
     point p, q, *ps;
@@ -439,7 +439,7 @@ vgpanecmd(ClientData clientData, Tcl_Interp * interp, int argc,
     vgp = *vgpp;
 
     c = argv[1][0];
-    length = strlen(argv[1]);
+    size_t length = strlen(argv[1]);
 
     if ((c == 'c') && (strncmp(argv[1], "coords", length) == 0)) {
        if ((argc < 3)) {