[PATCH 3/5] - native dbghelp generate long basic types, so handle them too

Eric Pouech eric.pouech at wanadoo.fr
Sun Aug 13 13:46:49 CDT 2006




A+
---

 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 fef8209..e7adbdf 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("%lld", val_int);
             break;
         case btUInt:
+        case btULong:
             if (!be_cpu->fetch_integer(lvalue, size, FALSE, &val_int)) return;
             dbg_printf("%llu", val_int);
             break;



More information about the wine-patches mailing list