From 96c5f3a66a0cc6e5b6b1f1c56ae041f8abda639d Mon Sep 17 00:00:00 2001 From: panzone <150828896+panzone91@users.noreply.github.com> Date: Tue, 25 Feb 2025 22:07:36 +0100 Subject: [PATCH] clang-format --- src/core/libraries/kernel/process.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/libraries/kernel/process.cpp b/src/core/libraries/kernel/process.cpp index 21eefb44c..22be1fe6d 100644 --- a/src/core/libraries/kernel/process.cpp +++ b/src/core/libraries/kernel/process.cpp @@ -46,7 +46,7 @@ s32 PS4_SYSV_ABI sceKernelLoadStartModule(const char* moduleFileName, size_t arg std::filesystem::path path; s32 handle; - if(guest_path[0] == '/') { + if (guest_path[0] == '/') { path = mnt->GetHostPath("/system/common/lib" + guest_path); handle = linker->LoadAndStartModule(path, args, argp, pRes); if (handle != -1) {