winedbg: Don't force integral values while displaying a stack value, it doesn't work for float/double values.

This commit is contained in:
Eric Pouech 2008-08-06 21:56:24 +02:00 committed by Alexandre Julliard
parent d5f6d841c1
commit 687a00c0af

View file

@ -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",