Out of all the changes, this is apparently the only thing Clang-Format doesn't like.
I'm honestly surprised.
This commit is contained in:
Stephen Miller 2025-02-20 17:59:53 -06:00
parent 6c2329eadf
commit 6d19a8ec0c

View File

@ -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());