From 4d5ad8dfdbc511495cf901fb2296da1c6233d733 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Tue, 27 Apr 2004 04:55:59 +0000 Subject: [PATCH] fix warning --- stepmania/src/RageFileManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageFileManager.cpp b/stepmania/src/RageFileManager.cpp index 47eeeb5fdd..6cc2b45a30 100644 --- a/stepmania/src/RageFileManager.cpp +++ b/stepmania/src/RageFileManager.cpp @@ -502,7 +502,7 @@ static bool PathUsesSlowFlush( const CString &sPath ) "Data/" }; - for( int i = 0; i < ARRAYSIZE(FlushPaths); ++i ) + for( unsigned i = 0; i < ARRAYSIZE(FlushPaths); ++i ) if( !strncmp( sPath, FlushPaths[i], strlen(FlushPaths[i]) ) ) return true; return false;