[PATCH] [WineDbg]: don't force integral values while displaying a stack value, it doesn't work for float/double values

Eric Pouech eric.pouech at orange.fr
Wed Aug 6 14:56:24 CDT 2008




A+
---

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


diff --git a/programs/winedbg/symbol.c b/programs/winedbg/symbol.c
index cd69a9c..b4b04e6 100644
--- a/programs/winedbg/symbol.c
+++ b/programs/winedbg/symbol.c
@@ -597,7 +597,7 @@ void symbol_print_local(const SYMBOL_INFO* sym, ULONG base,
 
     if (fill_sym_lvalue(sym, base, &lvalue, buffer, sizeof(buffer)))
     {
-        print_value(&lvalue, 'x', 1);
+        print_value(&lvalue, 0, 1);
         if (detailed)
             dbg_printf(" (%s%s)",
                        (sym->Flags & SYMFLAG_PARAMETER) ? "parameter" : "local",





More information about the wine-patches mailing list