From 6d19a8ec0cab9dd5aa79265780b299dc0b983d07 Mon Sep 17 00:00:00 2001 From: Stephen Miller Date: Thu, 20 Feb 2025 17:59:53 -0600 Subject: [PATCH] Clang Out of all the changes, this is apparently the only thing Clang-Format doesn't like. I'm honestly surprised. --- src/core/libraries/kernel/file_system.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/libraries/kernel/file_system.cpp b/src/core/libraries/kernel/file_system.cpp index cefb2aa38..e02adc9b4 100644 --- a/src/core/libraries/kernel/file_system.cpp +++ b/src/core/libraries/kernel/file_system.cpp @@ -512,7 +512,7 @@ s32 PS4_SYSV_ABI posix_rmdir(const char* path) { return ORBIS_OK; } -s32 PS4_SYSV_ABI sceKernelRmdir(const char* path) { +s32 PS4_SYSV_ABI sceKernelRmdir(const char* path) { s32 result = posix_rmdir(path); if (result < 0) { LOG_ERROR(Kernel_Fs, "error = {}", *__Error());