Commit dc6b9c2a authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

winedbg: Don't print extra \n in print_basic.

parent cf06ef64
......@@ -546,7 +546,6 @@ void print_basic(const struct dbg_lvalue* lvalue, char format)
case 'd':
dbg_print_longlong(res, TRUE);
dbg_printf("\n");
return;
case 'c':
......@@ -570,7 +569,6 @@ void print_basic(const struct dbg_lvalue* lvalue, char format)
if (lvalue->type.id == dbg_itype_segptr)
{
dbg_print_longlong(types_extract_as_longlong(lvalue, NULL), TRUE);
dbg_printf("\n");
}
else print_typed_basic(lvalue);
}
......
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