Fix warning

This commit is contained in:
Steve Checkoway
2005-04-28 17:04:11 +00:00
parent 77efd71587
commit b1f6f2c4a6
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -333,7 +333,7 @@ void ScreenRanking::Init()
{
vector<Course*> vpCourses;
GetAllCoursesToShow( vpCourses, SHOW_ONLY_MOST_RECENT_SCORES, NUM_MOST_RECENT_SCORES_TO_SHOW );
LOG->Trace("rankings: adding %u courses", vpCourses.size());
LOG->Trace("rankings: adding %u courses", unsigned(vpCourses.size()));
m_vScoreRowItem.resize( vpCourses.size() );
FOREACH_CONST( Course*, vpCourses, c )
{