From 2d70433068931102600b7111d95e77140f87b85b Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 2 Mar 2005 07:05:17 +0000 Subject: [PATCH] fix potential crash --- stepmania/src/RageFileManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageFileManager.cpp b/stepmania/src/RageFileManager.cpp index e0517aaa53..64a14dda7e 100644 --- a/stepmania/src/RageFileManager.cpp +++ b/stepmania/src/RageFileManager.cpp @@ -510,7 +510,7 @@ void RageFileManager::Remount( CString sMountpoint, CString sPath ) } if( !pDriver->Remount(sPath) ) - LOG->Warn( "Remount(%s,%s): remount failed (does the driver support remounting?)" ); + LOG->Warn( "Remount(%s,%s): remount failed (does the driver support remounting?)", sMountpoint.c_str(), sPath.c_str() ); else pDriver->FlushDirCache( "" );