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

Alexandre Julliard julliard at winehq.org
Fri Jan 9 09:52:03 CST 2009


Module: wine
Branch: master
Commit: 53bc99855a012db46ac171bd4851c9f6b7f950c5
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=53bc99855a012db46ac171bd4851c9f6b7f950c5

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Thu Jan  8 17:27:49 2009 +0100

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

---

 dlls/shdocvw/shdocvw_main.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/shdocvw/shdocvw_main.c b/dlls/shdocvw/shdocvw_main.c
index 8640600..a065aa5 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;




More information about the wine-cvs mailing list