From a15f699984df33edd5572ea42b935548803d21f8 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 20 Feb 2004 06:02:19 +0000 Subject: [PATCH] fix warning --- stepmania/src/ProfileHtml.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ProfileHtml.cpp b/stepmania/src/ProfileHtml.cpp index 208fff5220..0fa3a0ca8d 100644 --- a/stepmania/src/ProfileHtml.cpp +++ b/stepmania/src/ProfileHtml.cpp @@ -672,7 +672,7 @@ void PrintScreenshots( RageFile &f, const Profile *pProfile, CString sTitle, CSt { PRINT_OPEN(f, "Less Than 1 Month Old" ); { - for( int i=0; im_vScreenshots.size(); i++ ) + for( unsigned i=0; im_vScreenshots.size(); i++ ) { const Profile::Screenshot &ss = pProfile->m_vScreenshots[i]; PrintScreenshot( f, ss );