]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.920 v7.3.920
authorBram Moolenaar <Bram@vim.org>
Sat, 4 May 2013 01:40:27 +0000 (03:40 +0200)
committerBram Moolenaar <Bram@vim.org>
Sat, 4 May 2013 01:40:27 +0000 (03:40 +0200)
Problem:    Compiler warning for size_t to int.
Solution:   Add a type cast. (Mike Williams)

src/misc1.c
src/version.c

index 789aad373b225130aa2d95b72c25656d649533c0..913d5aba7ef16b1972dbef996d9c39513b063542 100644 (file)
@@ -10139,7 +10139,7 @@ expand_path_option(curdir, gap)
 # if defined(MSWIN) || defined(MSDOS)
        /* Avoid the path ending in a backslash, it fails when a comma is
         * appended. */
-       len = STRLEN(buf);
+       len = (int)STRLEN(buf);
        if (buf[len - 1] == '\\')
            buf[len - 1] = '/';
 # endif
index df8fe9a76fe85706d49ddf3aa6c0fda789b12adb..0811257c49ec1b67fe6e90ae7cbc9ad7df839a15 100644 (file)
@@ -728,6 +728,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    920,
 /**/
     919,
 /**/