Eric Pouech : winedbg: Native dbghelp generate long basic types, so handle them too.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Aug 28 05:09:25 CDT 2006


Module: wine
Branch: master
Commit: 9766dd1a5f56ecc3673bdcf6abe2aae638ec18e6
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=9766dd1a5f56ecc3673bdcf6abe2aae638ec18e6

Author: Eric Pouech <eric.pouech at wanadoo.fr>
Date:   Sun Aug 27 08:50:33 2006 +0200

winedbg: Native dbghelp generate long basic types, so handle them too.

---

 programs/winedbg/memory.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/programs/winedbg/memory.c b/programs/winedbg/memory.c
index dc87175..cab1327 100644
--- a/programs/winedbg/memory.c
+++ b/programs/winedbg/memory.c
@@ -324,10 +324,12 @@ static void print_typed_basic(const stru
         switch (bt)
         {
         case btInt:
+        case btLong:
             if (!be_cpu->fetch_integer(lvalue, size, TRUE, &val_int)) return;
             dbg_printf("%s", wine_dbgstr_longlong(val_int));
             break;
         case btUInt:
+        case btULong:
             if (!be_cpu->fetch_integer(lvalue, size, FALSE, &val_int)) return;
             dbg_printf("%s", wine_dbgstr_longlong(val_int));
             break;




More information about the wine-cvs mailing list