diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-02-26 11:25:33 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-02-26 11:25:33 +0100 |
commit | 5c9626301b93621869bbc0662cf71ccb2f853c51 (patch) | |
tree | 2d3e9c22dc8ec977510479da7c58afed3e080d21 /src | |
parent | 26402cb2de73a82821d7b2becc8d27be1c48fef3 (diff) | |
download | vim-git-5c9626301b93621869bbc0662cf71ccb2f853c51.tar.gz |
updated for version 7.3.832v7.3.832
Problem: Compiler warning.
Solution: Add type cast. (Mike Williams)
Diffstat (limited to 'src')
-rw-r--r-- | src/version.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/version.c b/src/version.c index 6675d009a..2625b89ae 100644 --- 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() { |