mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-06-03 17:23:18 +00:00
hotfix: another typo..
This commit is contained in:
parent
1dca54c165
commit
57bdb6cac2
1 changed files with 1 additions and 1 deletions
|
@ -168,7 +168,7 @@ s32 PS4_SYSV_ABI internal_strcspn(const char* str1, const char* str2) {
|
|||
return std::strcspn(str1, str2);
|
||||
}
|
||||
|
||||
char* PS4_SYSV_ABI internal_strdup() {
|
||||
char* PS4_SYSV_ABI internal_strdup(const char* str1) {
|
||||
LOG_DEBUG(Lib_LibcInternal, "called");
|
||||
char* dup = (char*)std::malloc(std::strlen(str1) + 1);
|
||||
if (dup != NULL)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue