From 0f519a02c5fa472f1b71844eb38d081e4c5bd408 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 6 Oct 2014 18:10:09 +0200 Subject: [PATCH] updated for version 7.4.464 Problem: Compiler warning. Solution: Add type cast. (Ken Takata) --- src/gui_w32.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/gui_w32.c b/src/gui_w32.c index 5e18e8517..374ed4725 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 diff --git a/src/version.c b/src/version.c index 223952423..dc9d25d58 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 464, /**/ 463, /**/ -- 2.50.1