1
0
mirror of https://github.com/janet-lang/janet synced 2025-12-04 07:38:09 +00:00

More updates to windows build.

This commit is contained in:
Calvin Rose
2024-08-17 10:21:50 -05:00
parent 84d43d1039
commit 70c29b4e5d
3 changed files with 10 additions and 3 deletions

View File

@@ -448,7 +448,12 @@ JANET_CORE_FN(janet_core_range,
count = stop;
}
count = (count > 0) ? count : 0;
int32_t int_count = ceil(count);
int32_t int_count;
if (count > (double) INT32_MAX) {
int_count = INT32_MAX;
} else {
int_count = (int32_t) ceil(count);
}
if (step > 0.0) {
janet_assert(start + int_count * step >= stop, "bad range code");
} else {

View File

@@ -353,8 +353,8 @@ static void watcher_callback_read(JanetFiber *fiber, JanetAsyncEvent event) {
}
static void janet_watcher_listen(JanetWatcher *watcher) {
for (int32_t i = 0; i < watcher.watch_descriptors.capacity; i++) {
const JanetKV *kv = watcher.watch_descriptors.items + i;
for (int32_t i = 0; i < watcher->watch_descriptors.capacity; i++) {
const JanetKV *kv = watcher->watch_descriptors.items + i;
if (!janet_checktype(kv->key, JANET_POINTER)) continue;
OverlappedWatch *ow = janet_unwrap_pointer(kv->key);
Janet pathv = kv->value;