# HG changeset patch # User Bram Moolenaar # Date 1412611809 -7200 # Node ID 74c65620c985f680eb1d7c1110f259cc37779ffa # Parent bd18da914be9d43a70713f6af02770a0d3280159 updated for version 7.4.464 Problem: Compiler warning. Solution: Add type cast. (Ken Takata) diff --git a/src/gui_w32.c b/src/gui_w32.c --- 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 diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 464, +/**/ 463, /**/ 462,