From: Alexandre Julliard Date: Thu, 8 Jan 2009 16:27:49 +0000 (+0100) Subject: shdocvw: Fix a pointer cast warning on 64-bit. X-Git-Tag: wine-1.1.13~335 X-Git-Url: http://git.etersoft.ru/projects/?a=commitdiff_plain;h=53bc99855a012db46ac171bd4851c9f6b7f950c5;p=wine%2Feterwine.git shdocvw: Fix a pointer cast warning on 64-bit. --- diff --git a/dlls/shdocvw/shdocvw_main.c b/dlls/shdocvw/shdocvw_main.c index 8640600f73..a065aa5e0b 100644 --- a/dlls/shdocvw/shdocvw_main.c +++ b/dlls/shdocvw/shdocvw_main.c @@ -205,7 +205,7 @@ void WINAPI OpenURL(HWND hWnd, HINSTANCE hInst, LPCSTR lpcstrUrl, int nShowCmd) * Some forwards (by ordinal) to SHLWAPI */ -static void* fetch_shlwapi_ordinal(unsigned ord) +static void* fetch_shlwapi_ordinal(UINT_PTR ord) { static const WCHAR shlwapiW[] = {'s','h','l','w','a','p','i','.','d','l','l','\0'}; static HANDLE h;