mirror of
https://github.com/Ryujinx/libsoundio.git
synced 2024-12-23 06:55:39 +00:00
fix build on OSX
This commit is contained in:
parent
e4b6670950
commit
1829fbf073
|
@ -423,7 +423,7 @@ void soundio_os_cond_signal(struct SoundIoOsCond *cond,
|
||||||
|
|
||||||
if (kevent(kq_id, &kev, 1, NULL, 0, &timeout) == -1) {
|
if (kevent(kq_id, &kev, 1, NULL, 0, &timeout) == -1) {
|
||||||
if (errno == EINTR)
|
if (errno == EINTR)
|
||||||
return 0;
|
return;
|
||||||
assert(0); // kevent signal error
|
assert(0); // kevent signal error
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Reference in a new issue