]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.206 v7.3.206
authorBram Moolenaar <Bram@vim.org>
Wed, 25 May 2011 19:18:06 +0000 (21:18 +0200)
committerBram Moolenaar <Bram@vim.org>
Wed, 25 May 2011 19:18:06 +0000 (21:18 +0200)
Problem:    64bit MS-Windows compiler warning.
Solution:   Use HandleToLong() instead of type cast. (Mike Williams)

src/gui_w32.c
src/version.c

index cdb1abb58321d676fcd7316ad05301440144e161..128869ee1282ab8e3fc666b4717dd7a01f64aa38 100644 (file)
@@ -1575,7 +1575,7 @@ gui_mch_init(void)
 
 #ifdef FEAT_EVAL
     /* set the v:windowid variable */
-    set_vim_var_nr(VV_WINDOWID, (long)s_hwnd);
+    set_vim_var_nr(VV_WINDOWID, HandleToLong(s_hwnd));
 #endif
 
 theend:
index 14c2b850764d23b5a6c46ed2f07d57867063b419..65de7c9e5f6f12a63e04986131f42a03e93f814c 100644 (file)
@@ -709,6 +709,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    206,
 /**/
     205,
 /**/