w32skrnl: Win64 printf format warning fixes.

This commit is contained in:
Michael Stefaniuc 2006-10-03 23:41:14 +02:00 committed by Alexandre Julliard
parent 52f8632300
commit 80f1d890c7
3 changed files with 2 additions and 3 deletions

View File

@ -4,7 +4,6 @@ SRCDIR = @srcdir@
VPATH = @srcdir@
MODULE = w32skrnl.dll
IMPORTS = kernel32
EXTRADEFS = -DWINE_NO_LONG_AS_INT
C_SRCS = \
w32skernel.c \

View File

@ -83,7 +83,7 @@ WORD WINAPI GetPEResourceTable16(
* LoadPeResource (W32SYS.11)
*/
DWORD WINAPI LoadPeResource16(WORD x,SEGPTR y) {
FIXME("(0x%04x,0x%08lx),stub!\n",x,y);
FIXME("(0x%04x,0x%08x),stub!\n",x,y);
return 0;
}

View File

@ -83,7 +83,7 @@ BOOL WINAPI ContinueDebugEvent16(DWORD pid, DWORD tid, DWORD status)
BOOL WINAPI ReadProcessMemory16(HANDLE process, LPCVOID addr, LPVOID buffer,
DWORD size, LPDWORD bytes_read)
{
return ReadProcessMemory(process, addr, buffer, size, bytes_read);
return ReadProcessMemory(process, addr, buffer, size, (SIZE_T *)bytes_read);
}
/***********************************************************************