Fix compiler warning for tier1

should be a 64bit type as input is 64bit, too.
This commit is contained in:
Kawe Mazidjatari 2023-02-26 19:38:01 +01:00
parent 2637398fff
commit b050616c35

View File

@ -83,7 +83,7 @@ const char* V_strnistr(const char* pStr, const char* pSearch, int64_t n)
// Skip over non-matches
if (FastASCIIToLower(*pLetter) == FastASCIIToLower(*pSearch))
{
int n1 = n - 1;
int64_t n1 = n - 1;
// Check for match
const char* pMatch = pLetter + 1;