clang-format fix

This commit is contained in:
Stephen Miller 2024-08-16 17:22:06 -05:00
parent 9fce6f7c01
commit 2935ca0fef
1 changed files with 2 additions and 2 deletions

View File

@ -126,7 +126,7 @@ int ErrnoToSceKernelError(int e) {
} }
void SetPosixErrno(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) { switch (e) {
case EPERM: case EPERM:
g_posix_errno = POSIX_EPERM; g_posix_errno = POSIX_EPERM;
@ -146,7 +146,7 @@ void SetPosixErrno(int e) {
case ERANGE: case ERANGE:
g_posix_errno = POSIX_ERANGE; g_posix_errno = POSIX_ERANGE;
break; break;
case EDEADLK: case EDEADLK:
g_posix_errno = POSIX_EDEADLK; g_posix_errno = POSIX_EDEADLK;
break; break;
case ETIMEDOUT: case ETIMEDOUT: