mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 20:42:44 +02:00
Condvar bugfix
This commit is contained in:
parent
e7c57fbd0b
commit
c7213b119b
@ -21,7 +21,7 @@ void condvarWaitTimeout(CondVar* c, u64 timeout) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void condvarWait(CondVar* c) {
|
void condvarWait(CondVar* c) {
|
||||||
return condvarWaitTimeout(c, -1);
|
return condvarWaitTimeout(c, -1ull);
|
||||||
}
|
}
|
||||||
|
|
||||||
Result condvarWake(CondVar* c, int num) {
|
Result condvarWake(CondVar* c, int num) {
|
||||||
|
Loading…
Reference in New Issue
Block a user