Commit 81c9b3a1 authored by Dylan Smith's avatar Dylan Smith Committed by Alexandre Julliard

winedbg: Correct header for virtual memory mapping for end address.

The virtual memory mapping info retrieved by the command "info maps" has the end address in the second column, even though the title for the column says "Size".
parent 3add397a
......@@ -639,7 +639,7 @@ void info_win32_virtual(DWORD pid)
}
}
dbg_printf("Address Size State Type RWX\n");
dbg_printf("Address End State Type RWX\n");
while (VirtualQueryEx(hProc, addr, &mbi, sizeof(mbi)) >= sizeof(mbi))
{
......
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