From c814ebe71f18514c381c33aef574df0edcd0adf2 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 19 Oct 2025 14:42:49 -0400 Subject: Fix signed comparison issues --- src/stdlib/tables.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/stdlib/tables.c') diff --git a/src/stdlib/tables.c b/src/stdlib/tables.c index 45e3abb4..6e774c53 100644 --- a/src/stdlib/tables.c +++ b/src/stdlib/tables.c @@ -229,7 +229,7 @@ void *Table$reserve(Table_t *t, const void *key, const void *value, const TypeIn // Otherwise add a new entry: // Resize buckets if necessary - if (t->entries.length >= (int64_t)t->bucket_info->count) { + if (t->entries.length >= t->bucket_info->count) { // Current resize policy: +50% at a time: uint32_t newsize = MAX(8, (uint32_t)(3 * t->bucket_info->count) / 2); if (unlikely(newsize > TABLE_MAX_BUCKETS)) newsize = TABLE_MAX_BUCKETS; -- cgit v1.2.3