Skip to content

Commit 56322cd

Browse files
committed
Pacify signed warning; ref #3565
1 parent dcbfe71 commit 56322cd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/hash.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -750,7 +750,8 @@ MRB_API mrb_value
750750
mrb_hash_keys(mrb_state *mrb, mrb_value hash)
751751
{
752752
khash_t(ht) *h = RHASH_TBL(hash);
753-
khiter_t k, end;
753+
khiter_t k;
754+
mrb_int end;
754755
mrb_value ary;
755756
mrb_value *p;
756757

0 commit comments

Comments
 (0)