1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-17 10:52:46 +00:00

Use correct string methods.

This commit is contained in:
Darryl Pogue
2011-08-06 13:57:47 -07:00
parent fd0f3a5746
commit 50dc74e88b
2 changed files with 2 additions and 2 deletions

View File

@ -514,7 +514,7 @@ plSynchedObject::SDLStateList::const_iterator plSynchedObject::IFindInSDLStateLi
SDLStateList::const_iterator it = list.begin();
for(; it != list.end(); it++)
if (!_stricmp((*it).c_str(), sdlName))
if (!stricmp((*it).c_str(), sdlName))
return it;
return it; // .end(), false