Francois Gouget : msvcp60: Add a trailing '\n' to a couple of TRACE() messages.
Module: wine Branch: master Commit: 5ff7ecaae0fb4bb7ff1043f5737b5dc818f4acc6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=5ff7ecaae0fb4bb7ff1043f573... Author: Francois Gouget <fgouget(a)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(a)DU?$char_traits(a)D@std@@V?$allocator(a)D@2@@std@@CAPEBDPEBD_K(a)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(a)GU?$char_traits(a)G@std@@V?$allocator(a)G@2@@std@@CAPEBGPEBG_K(a)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; }
participants (1)
-
Alexandre Julliard