# HG changeset patch # User Bram Moolenaar # Date 1361874333 -3600 # Node ID 670e576a58d19c2033877d26b4338873d8a7db12 # Parent 8b86b69546a9ea9309ebf7d05e1d443457cd58d8 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 --- a/src/version.c +++ b/src/version.c @@ -729,6 +729,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 832, +/**/ 831, /**/ 830, @@ -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() {