Commit 80f1d890 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

w32skrnl: Win64 printf format warning fixes.

parent 52f86323
......@@ -4,7 +4,6 @@ SRCDIR = @srcdir@
VPATH = @srcdir@
MODULE = w32skrnl.dll
IMPORTS = kernel32
EXTRADEFS = -DWINE_NO_LONG_AS_INT
C_SRCS = \
w32skernel.c \
......
......@@ -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;
}
......
......@@ -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);
}
/***********************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment