clean up math varsize complaints

This commit is contained in:
AzaezelX 2023-04-27 16:10:04 -05:00
parent 1230d0d280
commit 0ce2da3a23
30 changed files with 61 additions and 56 deletions

View file

@ -582,7 +582,7 @@ char* dStristr( char* str1, const char* str2 )
// Slow but at least we have it.
U32 str2len = strlen( str2 );
U64 str2len = (U64)strlen( str2 );
while( *str1 )
{
if( strncasecmp( str1, str2, str2len ) == 0 )