From 20dba34aad45be1e70730a36bfb4247efb9be9a0 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 7 May 2007 21:29:33 +0000 Subject: [PATCH] fix output --- stepmania/src/RageLog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageLog.cpp b/stepmania/src/RageLog.cpp index fd86a7f3e2..a7493ec4d6 100644 --- a/stepmania/src/RageLog.cpp +++ b/stepmania/src/RageLog.cpp @@ -425,7 +425,7 @@ void ShowWarningOrTrace( const char *file, int line, const char *message, bool b if( LOG ) (LOG->*method)( "%s:%i: %s", file, line, message ); else - fprintf( stderr, "%s:%i: %s", file, line, message ); + fprintf( stderr, "%s:%i: %s\n", file, line, message ); }