mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
updated for version 7.4.464
Problem: Compiler warning. Solution: Add type cast. (Ken Takata)
This commit is contained in:
parent
3a991dd001
commit
0f519a02c5
@ -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
|
||||
|
@ -741,6 +741,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
464,
|
||||
/**/
|
||||
463,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user