fix integer comparison warning

This commit is contained in:
Steve Checkoway
2003-08-03 01:17:23 +00:00
parent caa7783413
commit b8c9546324
+1 -1
View File
@@ -14,7 +14,7 @@ void NotesLoader::GetMainAndSubTitlesFromFullTitle( const CString sFullTitle, CS
{
const CString sLeftSeps[] = { " -", " ~", " (", " [" };
for( int i=0; i<ARRAYSIZE(sLeftSeps); i++ )
for( unsigned i=0; i<ARRAYSIZE(sLeftSeps); i++ )
{
int iBeginIndex = sFullTitle.Find( sLeftSeps[i] );
if( iBeginIndex == -1 )