Commit 687a00c0 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

winedbg: Don't force integral values while displaying a stack value, it doesn't…

winedbg: Don't force integral values while displaying a stack value, it doesn't work for float/double values.
parent d5f6d841
......@@ -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",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment