mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
updated for version 7.4.464
Problem: Compiler warning. Solution: Add type cast. (Ken Takata)
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user