]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.089 v7.3.089
authorBram Moolenaar <Bram@vim.org>
Fri, 24 Dec 2010 13:00:17 +0000 (14:00 +0100)
committerBram Moolenaar <Bram@vim.org>
Fri, 24 Dec 2010 13:00:17 +0000 (14:00 +0100)
Problem:    Compiler warning on 64 bit MS-Windows.
Solution:   Add type cast. (Mike Williams)

src/netbeans.c
src/version.c

index c0611d598d545193541b42174c3602c5a8b00892..71b664cbfb5f1b7524c0fa7c952972c43be8694e 100644 (file)
@@ -800,7 +800,7 @@ netbeans_read()
         *                  -> gui event loop or select loop
         *                      -> netbeans_read()
         */
-       save((char_u *)DETACH_MSG, strlen(DETACH_MSG));
+       save((char_u *)DETACH_MSG, (int)strlen(DETACH_MSG));
        nb_close_socket();
 
        if (len < 0)
index 48e37b2937b319e5babf5d3f13224ae13366708e..4face8f497ed62bd65a774bfb3fafa6a01f1a3af 100644 (file)
@@ -714,6 +714,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    89,
 /**/
     88,
 /**/