]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.464 v7.4.464
authorBram Moolenaar <Bram@vim.org>
Mon, 6 Oct 2014 16:10:09 +0000 (18:10 +0200)
committerBram Moolenaar <Bram@vim.org>
Mon, 6 Oct 2014 16:10:09 +0000 (18:10 +0200)
Problem:    Compiler warning.
Solution:   Add type cast. (Ken Takata)

src/gui_w32.c
src/version.c

index 5e18e85175e9e4701ae4e50f1c4af5dd7a1ab412..374ed4725891fa15189391977c8c8c44628da9c5 100644 (file)
@@ -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
index 2239524231bd86027a79fd34b3ee522e904a80bc..dc9d25d58969819b03673db9add5b66adf7834cf 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    464,
 /**/
     463,
 /**/