fix warning

This commit is contained in:
Glenn Maynard
2004-01-21 02:56:36 +00:00
parent 1e6d3e0211
commit 927a47a63e
+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( "%lu more.....", Songs.size() - NUM_COLUMNS * NUM_ROWS + 1 );
sText += ssprintf( "%i more.....", int(Songs.size() - NUM_COLUMNS * NUM_ROWS + 1) );
continue;
}