Fix GCC compiler warning.

This commit is contained in:
The Dax 2014-02-25 07:39:01 -05:00
parent ffcae56209
commit 5bca8f1119

View file

@ -635,7 +635,7 @@ u32 sysclib_strcpy(u32 dst, u32 src) {
}
u32 sysclib_strlen(u32 src) {
ERROR_LOG(SCEKERNEL, "Untested sysclib_strlen(dest=%08x, src=%08x)", src);
ERROR_LOG(SCEKERNEL, "Untested sysclib_strlen(src=%08x)", src);
return (u32)strlen(Memory::GetCharPointer(src));
}