Francois Gouget : winedbg: Remove spaces before '\n's.

Alexandre Julliard julliard at winehq.org
Mon Mar 9 09:40:30 CDT 2009


Module: wine
Branch: master
Commit: d1110dd2e9e4fd834568d5c2ed3621d1712bcf78
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=d1110dd2e9e4fd834568d5c2ed3621d1712bcf78

Author: Francois Gouget <fgouget at free.fr>
Date:   Sun Mar  8 23:49:42 2009 +0100

winedbg: Remove spaces before '\n's.

---

 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..3638463 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",
+               ctx->FloatSave.ErrorSelector,
+               ctx->FloatSave.DataOffset,
+               ctx->FloatSave.DataSelector,
+               ctx->FloatSave.Cr0NpxState);
 
     /* Now for the floating point registers */
     dbg_printf("Floating Point Registers:\n");




More information about the wine-cvs mailing list