This commit is contained in:
Reece Wilson 2022-09-04 06:54:58 +01:00
parent 6daa8ef078
commit 9ff96c26fa

View File

@ -50,7 +50,7 @@ static auline void *AuMemmem(const void *haystack, size_t haystackLen,
const void *const needle, const size_t needleLen)
{
#if defined(AURORA_IS_LINUX_DERIVED)
return ::memmem(haystack, heystackLen, needle, needleLen);
return ::memmem(haystack, haystackLen, needle, needleLen);
#else
if (!haystack)
{