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

Dylan Smith dylan.ah.smith at gmail.com
Mon Aug 17 00:15:15 CDT 2009


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(-)
-------------- next part --------------
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))
     {


More information about the wine-patches mailing list