shdocvw: Fix a pointer cast warning on 64-bit.

This commit is contained in:
Alexandre Julliard 2009-01-08 17:27:49 +01:00
parent e65c2d9a0d
commit 53bc99855a
1 changed files with 1 additions and 1 deletions

View File

@ -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;