changeset 6260:74c65620c985 v7.4.464

updated for version 7.4.464 Problem: Compiler warning. Solution: Add type cast. (Ken Takata)
author Bram Moolenaar <bram@vim.org>
date Mon, 06 Oct 2014 18:10:09 +0200
parents bd18da914be9
children c6c1572a1dba
files src/gui_w32.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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,