winedbg: Remove spaces before '\n's.

Francois Gouget fgouget at free.fr
Sun Mar 8 17:49:42 CDT 2009


---

This also merges multiple calls to dbg_printf() together. Unless I 
missed something it seems like this should be equivalent.

 programs/winedbg/be_i386.c |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/programs/winedbg/be_i386.c b/programs/winedbg/be_i386.c
index 0d6d058..f261d9f 100644
--- a/programs/winedbg/be_i386.c
+++ b/programs/winedbg/be_i386.c
@@ -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",
+               (unsigned int) ctx->FloatSave.ErrorSelector,
+               (unsigned int) ctx->FloatSave.DataOffset,
+               (unsigned int) ctx->FloatSave.DataSelector,
+               (unsigned int) ctx->FloatSave.Cr0NpxState);
 
     /* Now for the floating point registers */
     dbg_printf("Floating Point Registers:\n");
-- 
1.6.1.3




More information about the wine-patches mailing list