# HG changeset patch # User Darkvater # Date 2007-01-14 22:39:53 # Node ID b8be7c01484fc29b81710487f187503c649be1bf # Parent 71ed7ca97ceb803578c860da5551fd4497ab35f8 (svn r8134) -Fix (r8013): Add a newline after the ShowInfo console output diff --git a/src/unix.cpp b/src/unix.cpp --- a/src/unix.cpp +++ b/src/unix.cpp @@ -111,7 +111,7 @@ static void ChangeWorkingDirectory(char void ShowInfo(const char *str) { - fprintf(stderr, str); + fprintf(stderr, "%s\n", str); } void ShowOSErrorBox(const char *buf) diff --git a/src/win32.cpp b/src/win32.cpp --- 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;