Module: wine Branch: master Commit: fd84b7d0af2da4adce98b48f2c5349a3bab37004 URL: http://source.winehq.org/git/wine.git/?a=commit;h=fd84b7d0af2da4adce98b48f2c...
Author: Francois Gouget fgouget@free.fr Date: Sat Jun 2 10:35:35 2012 +0200
msvcp90: Add a trailing '\n' to a TRACE() message.
---
dlls/msvcp90/ios.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/msvcp90/ios.c b/dlls/msvcp90/ios.c index a436abf..c903acf 100644 --- a/dlls/msvcp90/ios.c +++ b/dlls/msvcp90/ios.c @@ -2418,7 +2418,7 @@ void __thiscall basic_ios_char_dtor(basic_ios_char *this) DEFINE_THISCALL_WRAPPER(MSVCP_basic_ios_char_vector_dtor, 8) basic_ios_char* __thiscall MSVCP_basic_ios_char_vector_dtor(basic_ios_char *this, unsigned int flags) { - TRACE("(%p %x)", this, flags); + TRACE("(%p %x)\n", this, flags); if(flags & 2) { /* we have an array, with the number of elements stored before the first object */ int i, *ptr = (int *)this-1;