From: Bram Moolenaar Date: Tue, 26 Feb 2013 10:25:33 +0000 (+0100) Subject: updated for version 7.3.832 X-Git-Tag: v7.3.832 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5c9626301b93621869bbc0662cf71ccb2f853c51;p=vim updated for version 7.3.832 Problem: Compiler warning. Solution: Add type cast. (Mike Williams) --- diff --git a/src/version.c b/src/version.c index 6675d009a..2625b89ae 100644 --- a/src/version.c +++ b/src/version.c @@ -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() {