mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-08-02 23:42:43 +00:00
Change SetPosixErrno unreachable to warning
I changed it to an unreachable in an earlier commit to make testing easier. At this point, having an unreachable for this seems unnecessary, so change it to a warning instead.
This commit is contained in:
parent
2333b2d5d3
commit
f9558ec1b6
@ -118,7 +118,7 @@ void SetPosixErrno(int e) {
|
||||
g_posix_errno = POSIX_ETIMEDOUT;
|
||||
break;
|
||||
default:
|
||||
UNREACHABLE_MSG("errno = {}", e);
|
||||
LOG_WARNING(Kernel, "Unhandled errno {}", e);
|
||||
g_posix_errno = e;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user