]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.484 v7.4.484
authorBram Moolenaar <Bram@vim.org>
Tue, 21 Oct 2014 16:17:09 +0000 (18:17 +0200)
committerBram Moolenaar <Bram@vim.org>
Tue, 21 Oct 2014 16:17:09 +0000 (18:17 +0200)
Problem:    Compiler warning on MS-Windows. (Ken Takata)
Solution:   Add type cast.

src/getchar.c
src/version.c

index cc93a7dd815b979925a4ff9da4f47d1c24e3cb38..cafa660c43e16bfdb60002ff2f8d1b2b98d30b36 100644 (file)
@@ -4530,7 +4530,7 @@ check_abbr(c, ptr, col, mincol)
            if (q != NULL)
            {
                vim_unescape_csi(q);
-               qlen = STRLEN(q);
+               qlen = (int)STRLEN(q);
                vim_free(q);
            }
        }
index 7d1a1914b6f57c73f824afb4b69324bd2e6ebedc..e0efbb6c358b6fd2b525d4b9bd833a6f905c89ea 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    484,
 /**/
     483,
 /**/