Francois Gouget : msvcp60: Add a trailing '\n' to a couple of TRACE() messages.

Alexandre Julliard julliard at winehq.org
Mon Jan 9 14:24:28 CST 2012


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

Author: Francois Gouget <fgouget at free.fr>
Date:   Mon Jan  9 09:27:32 2012 +0100

msvcp60: Add a trailing '\n' to a couple of TRACE() messages.

---

 dlls/msvcp60/string.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/msvcp60/string.c b/dlls/msvcp60/string.c
index 5b9eeb5..96e7134 100644
--- a/dlls/msvcp60/string.c
+++ b/dlls/msvcp60/string.c
@@ -269,7 +269,7 @@ MSVCP_size_t __cdecl basic_string_char__Pdif(const char *i1, const char *i2)
 /* ?_Psum@?$basic_string at DU?$char_traits at D@std@@V?$allocator at D@2@@std@@CAPEBDPEBD_K at Z */
 char* __cdecl basic_string_char__Psum(char *iter, MSVCP_size_t add)
 {
-    TRACE("(%p %lu)", iter, add);
+    TRACE("(%p %lu)\n", iter, add);
     return iter ? iter+add : iter;
 }
 
@@ -1965,7 +1965,7 @@ MSVCP_size_t __cdecl basic_string_wchar__Pdif(const wchar_t *i1, const wchar_t *
 /* ?_Psum@?$basic_string at GU?$char_traits at G@std@@V?$allocator at G@2@@std@@CAPEBGPEBG_K at Z */
 wchar_t* __cdecl basic_string_wchar__Psum(wchar_t *iter, MSVCP_size_t add)
 {
-    TRACE("(%p %lu)", iter, add);
+    TRACE("(%p %lu)\n", iter, add);
     return iter ? iter+add : iter;
 }
 




More information about the wine-cvs mailing list