diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-05-25 21:18:06 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-05-25 21:18:06 +0200 |
commit | 7154b326d0aa1542d10d54278edc6af1fe57ac5d (patch) | |
tree | 41e42a6a03115bb5c90c10e8ba40d3c91872acf3 /src | |
parent | 6fa46363ad667a60d4d6a07dc1e83653cd0dae17 (diff) | |
download | vim-7154b326d0aa1542d10d54278edc6af1fe57ac5d.zip |
updated for version 7.3.206
Problem: 64bit MS-Windows compiler warning.
Solution: Use HandleToLong() instead of type cast. (Mike Williams)
Diffstat (limited to 'src')
-rw-r--r-- | src/gui_w32.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/gui_w32.c b/src/gui_w32.c index cdb1abb58..128869ee1 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 14c2b8507..65de7c9e5 100644 --- a/src/version.c +++ b/src/version.c @@ -710,6 +710,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 206, +/**/ 205, /**/ 204, |