Skip to content

Commit 586a3a1

Browse files
committed
xrCore/LocatorAPI_auth.cpp: Fixed out-of-scope variable usage.
1 parent 8c7bd75 commit 586a3a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/xrCore/LocatorAPI_auth.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ void CLocatorAPI::auth_runtime(void* params)
7575
continue;
7676

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

0 commit comments

Comments
 (0)