winedbg: Remove spaces before '\n's.

This commit is contained in:
Francois Gouget 2009-03-08 23:49:42 +01:00 committed by Alexandre Julliard
parent ae28fdb560
commit d1110dd2e9
1 changed files with 5 additions and 4 deletions

View File

@ -173,10 +173,11 @@ static void be_i386_all_print_context(HANDLE hThread, const CONTEXT* ctx)
dbg_printf(")\n");
/* Here are the rest of the registers */
dbg_printf(" FLES:%08x ", (unsigned int) ctx->FloatSave.ErrorSelector);
dbg_printf(" FLDO:%08x ", (unsigned int) ctx->FloatSave.DataOffset);
dbg_printf(" FLDS:%08x ", (unsigned int) ctx->FloatSave.DataSelector);
dbg_printf(" FLCNS:%08x \n", (unsigned int) ctx->FloatSave.Cr0NpxState);
dbg_printf(" FLES:%08x FLDO:%08x FLDS:%08x FLCNS:%08x\n",
ctx->FloatSave.ErrorSelector,
ctx->FloatSave.DataOffset,
ctx->FloatSave.DataSelector,
ctx->FloatSave.Cr0NpxState);
/* Now for the floating point registers */
dbg_printf("Floating Point Registers:\n");