diff src/unix.cpp @ 5674:a9b2df5251d6 draft

(svn r8134) -Fix (r8013): Add a newline after the ShowInfo console output
author Darkvater <Darkvater@openttd.org>
date Sun, 14 Jan 2007 22:39:53 +0000
parents 358c07fb3212
children d0e1f93e603a
line wrap: on
line diff
--- a/src/unix.cpp
+++ b/src/unix.cpp
@@ -111,7 +111,7 @@
 
 void ShowInfo(const char *str)
 {
-	fprintf(stderr, str);
+	fprintf(stderr, "%s\n", str);
 }
 
 void ShowOSErrorBox(const char *buf)