fix warning

This commit is contained in:
Steve Checkoway
2003-12-18 00:53:51 +00:00
parent c99c3224c1
commit a9b8be3c07
+1 -1
View File
@@ -52,7 +52,7 @@ void MusicList::AddSongsToGroup(const vector<Song*> &Songs)
if( c == NUM_COLUMNS-1 && r == NUM_ROWS-1 && Songs.size() != unsigned(NUM_COLUMNS*NUM_ROWS) )
{
sText += ssprintf( "%d more.....", Songs.size() - NUM_COLUMNS * NUM_ROWS + 1 );
sText += ssprintf( "%lu more.....", Songs.size() - NUM_COLUMNS * NUM_ROWS + 1 );
continue;
}