1
0
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:
Calvin Rose 2020-11-02 08:27:45 -06:00
parent 9f27336827
commit 8942e348bd

View File

@ -750,10 +750,10 @@ void janet_loop1_impl(int has_timeout, JanetTimestamp to) {
uint64_t waittime; uint64_t waittime;
if (has_timeout) { if (has_timeout) {
JanetTimestamp now = ts_now(); JanetTimestamp now = ts_now();
if (now > to.when) { if (now > to) {
waittime = 0; waittime = 0;
} else { } else {
waittime = (uint64_t)(to.when - now); waittime = (uint64_t)(to - now);
} }
} else { } else {
waittime = INFINITE; waittime = INFINITE;