]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.832 v7.3.832
authorBram Moolenaar <Bram@vim.org>
Tue, 26 Feb 2013 10:25:33 +0000 (11:25 +0100)
committerBram Moolenaar <Bram@vim.org>
Tue, 26 Feb 2013 10:25:33 +0000 (11:25 +0100)
Problem:    Compiler warning.
Solution:   Add type cast. (Mike Williams)

src/version.c

index 6675d009a5fa955812a430026af1e6c0ec6cecd7..2625b89aef5a50ef217a6b87c7cf38ac8254ef5a 100644 (file)
@@ -728,6 +728,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    832,
 /**/
     831,
 /**/
@@ -2466,7 +2468,7 @@ list_features()
      * width */
     for (i = 0; features[i] != NULL; ++i)
     {
-       int l = STRLEN(features[i]);
+       int l = (int)STRLEN(features[i]);
 
        if (l > width)
            width = l;
@@ -2518,6 +2520,7 @@ list_features()
            msg_putchar('\n');
     }
 }
+
     void
 list_version()
 {