]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
updated for version 7.3.525 v7.3.525
authorBram Moolenaar <Bram@vim.org>
Fri, 25 May 2012 09:02:41 +0000 (11:02 +0200)
committerBram Moolenaar <Bram@vim.org>
Fri, 25 May 2012 09:02:41 +0000 (11:02 +0200)
Problem:    Compiler warning on 64 bit MS-Windows.
Solution:   Add type cast. (Mike Williams)

src/ex_getln.c
src/version.c

index 3d0c26f05e55e089c75a632f008ba9b7a0bbfcab..a3a9c7b91a0008eac9b312ca5b2967389d3409d0 100644 (file)
@@ -5263,7 +5263,7 @@ get_history_arg(xp, idx)
 {
     static char_u compl[2] = { NUL, NUL };
     char *short_names = ":=@>?/";
-    int short_names_count = STRLEN(short_names);
+    int short_names_count = (int)STRLEN(short_names);
     int history_name_count = sizeof(history_names) / sizeof(char *) - 1;
 
     if (idx < short_names_count)
index 6878ef2a1d884621aaa0599420e0cac992d78b7c..50c3d03d4e7234cd6a395c8b1c5ea408820dd9fe 100644 (file)
@@ -714,6 +714,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    525,
 /**/
     524,
 /**/