From fa9afed8252dbbd254654336ece846bd4ae4bad5 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sat, 4 Dec 2004 20:33:17 +0000 Subject: [PATCH] Fix warning once and for all. (Two versions of gcc give opposite warnings.) --- stepmania/src/NotesLoaderBMS.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/NotesLoaderBMS.cpp b/stepmania/src/NotesLoaderBMS.cpp index 9124488530..e6efddb652 100644 --- a/stepmania/src/NotesLoaderBMS.cpp +++ b/stepmania/src/NotesLoaderBMS.cpp @@ -644,7 +644,7 @@ void BMSLoader::ReadGlobalTags( const NameToData_t &mapNameToData, Song &out ) sWavID.MakeUpper(); // HACK: undo the MakeLower() out.m_vsKeysoundFile.push_back( sData ); m_mapWavIdToKeysoundIndex[ sWavID ] = out.m_vsKeysoundFile.size()-1; - LOG->Trace( "Inserting keysound index %u '%s'", out.m_vsKeysoundFile.size()-1, sWavID.c_str() ); + LOG->Trace( "Inserting keysound index %u '%s'", unsigned(out.m_vsKeysoundFile.size()-1), sWavID.c_str() ); } /* Time signature tags affect all other global timing tags, so read them first. */