From 26fdd7da96865a96e7a7b1efec130106499cd29f Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 30 Nov 2011 13:42:44 +0100 Subject: [PATCH] updated for version 7.3.357 Problem: Compiler warning in MS-Windows console build. Solution: Adjust return type of PrintHookProc(). (Mike Williams) --- src/os_mswin.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/os_mswin.c b/src/os_mswin.c index 839c3df5b..b4f662ad5 100644 --- a/src/os_mswin.c +++ b/src/os_mswin.c @@ -1869,7 +1869,7 @@ AbortProc(HDC hdcPrn, int iCode) #ifndef FEAT_GUI - static UINT CALLBACK + static UINT_PTR CALLBACK PrintHookProc( HWND hDlg, // handle to dialog box UINT uiMsg, // message identifier diff --git a/src/version.c b/src/version.c index 7a13d1315..2e3922e97 100644 --- a/src/version.c +++ b/src/version.c @@ -714,6 +714,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 357, /**/ 356, /**/ -- 2.50.1