0
0
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:
Bram Moolenaar 2014-10-06 18:10:09 +02:00
parent 3a991dd001
commit 0f519a02c5
2 changed files with 3 additions and 1 deletions

View File

@ -1667,7 +1667,7 @@ gui_mch_init(void)
HANDLE hIcon = NULL; HANDLE hIcon = NULL;
if (mch_icon_load(&hIcon) == OK && 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 #ifdef FEAT_MENU

View File

@ -741,6 +741,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
464,
/**/ /**/
463, 463,
/**/ /**/