From 137a41efcef290aaf93dd7f036b829985c7dce9b Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 11 Feb 2004 20:14:30 +0000 Subject: [PATCH] fix output --- stepmania/src/RageLog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/RageLog.cpp b/stepmania/src/RageLog.cpp index f2b996b595..3ba4779400 100644 --- a/stepmania/src/RageLog.cpp +++ b/stepmania/src/RageLog.cpp @@ -112,10 +112,10 @@ RageLog::RageLog() // Open log file and leave it open. if( !g_fileLog->Open( LOG_PATH, RageFile::WRITE|RageFile::STREAMED ) ) - fprintf( stderr, "Couldn't open %s: %s", LOG_PATH, g_fileLog->GetError().c_str() ); + fprintf( stderr, "Couldn't open %s: %s\n", LOG_PATH, g_fileLog->GetError().c_str() ); if( !g_fileInfo->Open( INFO_PATH, RageFile::WRITE|RageFile::STREAMED ) ) - fprintf( stderr, "Couldn't open %s: %s", INFO_PATH, g_fileInfo->GetError().c_str() ); + fprintf( stderr, "Couldn't open %s: %s\n", INFO_PATH, g_fileInfo->GetError().c_str() ); this->Info( PRODUCT_NAME_VER );