Module: wine Branch: master Commit: 81c9b3a1055ac3f94b08bf8e83ed974881b6acca URL: http://source.winehq.org/git/wine.git/?a=commit;h=81c9b3a1055ac3f94b08bf8e83...
Author: Dylan Smith dylan.ah.smith@gmail.com Date: Mon Aug 17 01:15:15 2009 -0400
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".
---
programs/winedbg/info.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/programs/winedbg/info.c b/programs/winedbg/info.c index a4c919a..a6156b1 100644 --- a/programs/winedbg/info.c +++ b/programs/winedbg/info.c @@ -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)) {