From 2935ca0fef9df989ab210475e61a25964401cc12 Mon Sep 17 00:00:00 2001 From: Stephen Miller Date: Fri, 16 Aug 2024 17:22:06 -0500 Subject: [PATCH] clang-format fix --- src/core/libraries/kernel/libkernel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/libraries/kernel/libkernel.cpp b/src/core/libraries/kernel/libkernel.cpp index 93afbc4f..781feef8 100644 --- a/src/core/libraries/kernel/libkernel.cpp +++ b/src/core/libraries/kernel/libkernel.cpp @@ -126,7 +126,7 @@ int ErrnoToSceKernelError(int e) { } void SetPosixErrno(int e) { - //Some error numbers are different between supported OSes or the PS4 + // Some error numbers are different between supported OSes or the PS4 switch (e) { case EPERM: g_posix_errno = POSIX_EPERM; @@ -146,7 +146,7 @@ void SetPosixErrno(int e) { case ERANGE: g_posix_errno = POSIX_ERANGE; break; - case EDEADLK: + case EDEADLK: g_posix_errno = POSIX_EDEADLK; break; case ETIMEDOUT: