From 30413fd03ea2a41832d5ad101819bbad54b8252e Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Tue, 30 Nov 2004 16:55:42 +0000 Subject: [PATCH] Added missing newline for Windows debug output git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30817 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/log.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/log.cpp b/src/common/log.cpp index 7796bf94d4..98256b16e0 100644 --- a/src/common/log.cpp +++ b/src/common/log.cpp @@ -555,7 +555,7 @@ void wxLogStderr::DoLogString(const wxChar *szString, time_t WXUNUSED(t)) if ( traits && !traits->HasStderr() ) { wxMessageOutputDebug dbgout; - dbgout.Printf(_T("%s"), str.c_str()); + dbgout.Printf(_T("%s\n"), str.c_str()); } } }