From 57bdb6cac2ed64116754755d601489ccf4524045 Mon Sep 17 00:00:00 2001 From: georgemoralis Date: Fri, 14 Feb 2025 10:24:12 +0200 Subject: [PATCH] hotfix: another typo.. --- src/core/libraries/libc_internal/libc_internal_str.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/libraries/libc_internal/libc_internal_str.cpp b/src/core/libraries/libc_internal/libc_internal_str.cpp index 92a131fa1..e7c0666d6 100644 --- a/src/core/libraries/libc_internal/libc_internal_str.cpp +++ b/src/core/libraries/libc_internal/libc_internal_str.cpp @@ -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)