Commit 57e00da2 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

Fix format string in NtQueryVirtualMemory().

parent 0252761c
......@@ -1451,7 +1451,7 @@ NTSTATUS WINAPI NtQueryVirtualMemory( HANDLE process, LPCVOID addr,
if (info_class != MemoryBasicInformation)
{
FIXME("(%p, %p, %ld, %p, %ld, %p) Unimplemented information class\n", process, addr,
FIXME("(%p, %p, %d, %p, %ld, %p) Unimplemented information class\n", process, addr,
info_class, buffer, len, res_len);
return STATUS_INVALID_INFO_CLASS;
}
......
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