From 82b0704bcc7a8632c5f6d8d57cc2aa1c7acb38b6 Mon Sep 17 00:00:00 2001 From: Darkvater Date: Sun, 14 Jan 2007 22:39:53 +0000 Subject: (svn r8134) -Fix (r8013): Add a newline after the ShowInfo console output --- src/win32.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/win32.cpp') diff --git a/src/win32.cpp b/src/win32.cpp index b41204a9d..82611513e 100644 --- a/src/win32.cpp +++ b/src/win32.cpp @@ -838,7 +838,7 @@ void CreateConsole(void) void ShowInfo(const char *str) { if (_has_console) { - fprintf(stderr, str); + fprintf(stderr, "%s\n", str); } else { bool old; -- cgit v1.2.3-54-g00ecf