hhctrl.ocx: Win64 printf format warning fixes.

This commit is contained in:
Michael Stefaniuc 2006-10-03 23:38:59 +02:00 committed by Alexandre Julliard
parent 277fab6cc7
commit 84473e5bfc
3 changed files with 2 additions and 3 deletions

View File

@ -5,7 +5,6 @@ VPATH = @srcdir@
MODULE = hhctrl.ocx
IMPORTS = advapi32 comctl32 shell32 ole32 oleaut32 user32 gdi32 kernel32
EXTRALIBS = -luuid
EXTRADEFS = -DWINE_NO_LONG_AS_INT
C_SRCS = \
chm.c \

View File

@ -76,7 +76,7 @@ HWND WINAPI HtmlHelpW(HWND caller, LPCWSTR filename, UINT command, DWORD data)
{
CHAR *file = NULL;
TRACE("(%p, %s, command=%s, data=%ld)\n",
TRACE("(%p, %s, command=%s, data=%d)\n",
caller, debugstr_w( filename ),
command_to_string( command ), data);

View File

@ -30,7 +30,7 @@ HINSTANCE hhctrl_hinstance;
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD fdwReason, LPVOID lpvReserved)
{
TRACE("(%p,%ld,%p)\n", hInstance, fdwReason, lpvReserved);
TRACE("(%p,%d,%p)\n", hInstance, fdwReason, lpvReserved);
switch (fdwReason)
{