w32skrnl: Win64 printf format warning fixes.
This commit is contained in:
parent
52f8632300
commit
80f1d890c7
|
@ -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);
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
|
|
Loading…
Reference in New Issue