]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.238 v7.3.238
authorBram Moolenaar <Bram@vim.org>
Thu, 7 Jul 2011 13:04:52 +0000 (15:04 +0200)
committerBram Moolenaar <Bram@vim.org>
Thu, 7 Jul 2011 13:04:52 +0000 (15:04 +0200)
Problem:    Compiler warning for conversion.
Solution:   Add type cast. (Mike Williams)

src/ex_getln.c
src/version.c

index 85f8cfac101c815638656bb344ae06423024b747..561ab970ee944cc1d932f6240f396667e1dbf343 100644 (file)
@@ -5025,7 +5025,7 @@ ExpandRTDir(pat, num_file, file, dirnames)
 
     *num_file = 0;
     *file = NULL;
-    pat_len = STRLEN(pat);
+    pat_len = (int)STRLEN(pat);
     ga_init2(&ga, (int)sizeof(char *), 10);
 
     for (i = 0; dirnames[i] != NULL; ++i)
index 731a46dd393852327626f88d0d81e2df3db0921c..92612ad3acf7486e57dff03d720745b66d616c97 100644 (file)
@@ -709,6 +709,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    238,
 /**/
     237,
 /**/