Skip to content

Commit

Permalink
xrCore/LocatorAPI_auth.cpp: Fixed out-of-scope variable usage.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaffeine committed Nov 13, 2015
1 parent 8c7bd75 commit 586a3a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xrCore/LocatorAPI_auth.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ void CLocatorAPI::auth_runtime(void* params)
continue;

// test for important
for (s = 0; s < _o->important.size(); s++)
for (u32 s = 0; s < _o->important.size(); s++)
{
if ((f.size_real != 0) && strstr(f.name, _o->important[s].c_str()))
{
Expand Down

0 comments on commit 586a3a1

Please sign in to comment.