From 60350ee449d9791f2bef50db33a6a445803d82be Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Tue, 8 May 2007 06:42:13 +0000 Subject: [PATCH] Missed cleanup commit. --- stepmania/src/RageException.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/stepmania/src/RageException.cpp b/stepmania/src/RageException.cpp index 9e766e4917..3bd77a4d0f 100644 --- a/stepmania/src/RageException.cpp +++ b/stepmania/src/RageException.cpp @@ -29,14 +29,13 @@ void RageException::Throw( const char *sFmt, ... ) va_list va; va_start( va, sFmt ); RString error = vssprintf( sFmt, va ); - va_end(va); + va_end( va ); RString msg = ssprintf( "\n" "//////////////////////////////////////////////////////\n" "Exception: %s\n" - "//////////////////////////////////////////////////////\n" - "", + "//////////////////////////////////////////////////////\n", error.c_str() ); if( LOG ) {