fix warning

This commit is contained in:
Steve Checkoway
2004-04-27 04:55:59 +00:00
parent 6804fe8554
commit 4d5ad8dfdb
+1 -1
View File
@@ -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;