Christian Costa : ddraw: DDRAW_dump_flags_nolf must not add LF.

Alexandre Julliard julliard at winehq.org
Tue Mar 25 06:58:14 CDT 2008


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

Author: Christian Costa <titan.costa at wanadoo.fr>
Date:   Mon Mar 24 23:14:45 2008 +0100

ddraw: DDRAW_dump_flags_nolf must not add LF.

---

 dlls/ddraw/utils.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/ddraw/utils.c b/dlls/ddraw/utils.c
index eada7a5..cddc2fd 100644
--- a/dlls/ddraw/utils.c
+++ b/dlls/ddraw/utils.c
@@ -640,7 +640,7 @@ static void DDRAW_dump_flags_nolf(DWORD flags, const flag_info* names,
     for (i=0; i < num_names; i++)
         if ((flags & names[i].val) ||      /* standard flag value */
             ((!flags) && (!names[i].val))) /* zero value only */
-            TRACE("%s\n", names[i].name);
+            TRACE("%s ", names[i].name);
 }
 
 static void DDRAW_dump_flags(DWORD flags, const flag_info* names, size_t num_names)




More information about the wine-cvs mailing list