clang fix

This commit is contained in:
georgemoralis 2024-06-22 18:12:04 +03:00
parent 73d60b7e8d
commit 11a3906243
2 changed files with 2 additions and 3 deletions

View file

@ -1276,7 +1276,7 @@ int PS4_SYSV_ABI scePthreadOnce(int* once_control, void (*init_routine)(void)) {
return pthread_once(reinterpret_cast<pthread_once_t*>(once_control), init_routine);
}
[[noreturn]] void PS4_SYSV_ABI scePthreadExit(void *value_ptr) {
[[noreturn]] void PS4_SYSV_ABI scePthreadExit(void* value_ptr) {
pthread_exit(value_ptr);
}