mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix GCC compiler warning.
This commit is contained in:
parent
ffcae56209
commit
5bca8f1119
1 changed files with 1 additions and 1 deletions
|
@ -635,7 +635,7 @@ u32 sysclib_strcpy(u32 dst, u32 src) {
|
||||||
}
|
}
|
||||||
|
|
||||||
u32 sysclib_strlen(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));
|
return (u32)strlen(Memory::GetCharPointer(src));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue