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

This commit is contained in:
Eric Pouech 2010-12-26 15:21:05 +01:00 committed by Alexandre Julliard
parent cf06ef640d
commit dc6b9c2a58
1 changed files with 0 additions and 2 deletions

View File

@ -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);
}