From 7154b326d0aa1542d10d54278edc6af1fe57ac5d Mon Sep 17 00:00:00 2001
From: Bram Moolenaar <Bram@vim.org>
Date: Wed, 25 May 2011 21:18:06 +0200
Subject: [PATCH] updated for version 7.3.206 Problem:    64bit MS-Windows
 compiler warning. Solution:   Use HandleToLong() instead of type cast. (Mike
 Williams)

---
 src/gui_w32.c | 2 +-
 src/version.c | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/gui_w32.c b/src/gui_w32.c
index cdb1abb583..128869ee12 100644
--- a/src/gui_w32.c
+++ b/src/gui_w32.c
@@ -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:
diff --git a/src/version.c b/src/version.c
index 14c2b85076..65de7c9e5f 100644
--- a/src/version.c
+++ b/src/version.c
@@ -709,6 +709,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    206,
 /**/
     205,
 /**/
-- 
GitLab