mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-22 22:44:34 +00:00
strstr_nocase() typo fix.
This commit is contained in:
parent
2356069eac
commit
c0c2f4536a
@ -2067,7 +2067,7 @@ static bool strstr_nocase( const char* l, const char* r )
|
||||
const auto lsz = strlen( l );
|
||||
const auto rsz = strlen( r );
|
||||
auto ll = (char*)alloca( lsz + 1 );
|
||||
auto rl = (char*)alloca( lsz + 1 );
|
||||
auto rl = (char*)alloca( rsz + 1 );
|
||||
for( size_t i=0; i<lsz; i++ )
|
||||
{
|
||||
ll[i] = tolower( l[i] );
|
||||
|
Loading…
Reference in New Issue
Block a user