mirror of
https://github.com/janet-lang/janet
synced 2024-10-31 22:16:16 +00:00
Small change to windows ev.
This commit is contained in:
parent
9f27336827
commit
8942e348bd
@ -750,10 +750,10 @@ void janet_loop1_impl(int has_timeout, JanetTimestamp to) {
|
||||
uint64_t waittime;
|
||||
if (has_timeout) {
|
||||
JanetTimestamp now = ts_now();
|
||||
if (now > to.when) {
|
||||
if (now > to) {
|
||||
waittime = 0;
|
||||
} else {
|
||||
waittime = (uint64_t)(to.when - now);
|
||||
waittime = (uint64_t)(to - now);
|
||||
}
|
||||
} else {
|
||||
waittime = INFINITE;
|
||||
|
Loading…
Reference in New Issue
Block a user