diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-11-30 13:42:44 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-11-30 13:42:44 +0100 |
commit | 26fdd7da96865a96e7a7b1efec130106499cd29f (patch) | |
tree | 1536babd8d555be8bae2032d6a4c279c0ad72d2f /src/os_mswin.c | |
parent | 6d8f9c6f59f49c3810e5336e1a558f3d61acd30e (diff) | |
download | vim-26fdd7da96865a96e7a7b1efec130106499cd29f.zip |
updated for version 7.3.357
Problem: Compiler warning in MS-Windows console build.
Solution: Adjust return type of PrintHookProc(). (Mike Williams)
Diffstat (limited to 'src/os_mswin.c')
-rw-r--r-- | src/os_mswin.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |