diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-03-19 14:48:29 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-03-19 14:48:29 +0100 |
commit | af62ff3696514a4f1b595629bcfa584748bc29ce (patch) | |
tree | 3cd451ad817d37bead9c136137c90267ca5c5d1c /src/gui_w32.c | |
parent | 0c279bbb9c2b9fce1c837a35ace2d4644eced0b8 (diff) | |
download | vim-git-af62ff3696514a4f1b595629bcfa584748bc29ce.tar.gz |
updated for version 7.3.870v7.3.870
Problem: Compiler warnings when using MingW 4.5.3.
Solution: Do not use MAKEINTRESOURCE. Adjust #if. (Ken Takata)
Diffstat (limited to 'src/gui_w32.c')
-rw-r--r-- | src/gui_w32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui_w32.c b/src/gui_w32.c index 04658d682..4ff89a323 100644 --- a/src/gui_w32.c +++ b/src/gui_w32.c @@ -1614,7 +1614,7 @@ gui_mch_init(void) #endif #ifdef FEAT_EVAL -# if _MSC_VER < 1400 +# ifndef HandleToLong /* HandleToLong() only exists in compilers that can do 64 bit builds */ # define HandleToLong(h) ((long)(h)) # endif |