summaryrefslogtreecommitdiffstats
path: root/src/gui_w32.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2014-10-06 18:10:09 +0200
committerBram Moolenaar <Bram@vim.org>2014-10-06 18:10:09 +0200
commit0f519a02c5fa472f1b71844eb38d081e4c5bd408 (patch)
treeee1e2cdbb142099e488369de213ea955c96bb34e /src/gui_w32.c
parent3a991dd00193eda3aeaf344e60905191b9db1b48 (diff)
updated for version 7.4.464v7.4.464
Problem: Compiler warning. Solution: Add type cast. (Ken Takata)
Diffstat (limited to 'src/gui_w32.c')
-rw-r--r--src/gui_w32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui_w32.c b/src/gui_w32.c
index 5e18e85175..374ed47258 100644
--- a/src/gui_w32.c
+++ b/src/gui_w32.c
@@ -1667,7 +1667,7 @@ gui_mch_init(void)
HANDLE hIcon = NULL;
if (mch_icon_load(&hIcon) == OK && hIcon != NULL)
- SendMessage(s_hwnd, WM_SETICON, ICON_SMALL, hIcon);
+ SendMessage(s_hwnd, WM_SETICON, ICON_SMALL, (LPARAM)hIcon);
}
#ifdef FEAT_MENU