Eric Pouech : winedbg: Don' t force integral values while displaying a stack value, it doesn' t work for float/double values.
Module: wine Branch: master Commit: 687a00c0afbce7e17ccffded2a013fe0d01fc787 URL: http://source.winehq.org/git/wine.git/?a=commit;h=687a00c0afbce7e17ccffded2a... Author: Eric Pouech <eric.pouech(a)orange.fr> Date: Wed Aug 6 21:56:24 2008 +0200 winedbg: Don't force integral values while displaying a stack value, it doesn't work for float/double values. --- 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",
participants (1)
-
Alexandre Julliard