Fix _sys_strncasecmp

This commit is contained in:
Nekotekina 2017-09-17 13:53:23 +03:00
parent 83f93202d0
commit 015b9fdf8b
1 changed files with 1 additions and 1 deletions

View File

@ -258,7 +258,7 @@ vm::ptr<char> _sys_strncpy(vm::ptr<char> dest, vm::cptr<char> source, u32 len)
return dest;
}
s32 _sys_strncasecmp(vm::cptr<char> str1, vm::cptr<char> str2, s32 n)
s32 _sys_strncasecmp(vm::cptr<char> str1, vm::cptr<char> str2, u32 n)
{
sysPrxForUser.trace("_sys_strncasecmp(str1=%s, str2=%s, n=%d)", str1, str2, n);