Skip to content

Commit

Permalink
Pacify signed warning; ref #3565
Browse files Browse the repository at this point in the history
  • Loading branch information
matz committed Apr 1, 2017
1 parent dcbfe71 commit 56322cd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/hash.c
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -750,7 +750,8 @@ MRB_API mrb_value
mrb_hash_keys(mrb_state *mrb, mrb_value hash) mrb_hash_keys(mrb_state *mrb, mrb_value hash)
{ {
khash_t(ht) *h = RHASH_TBL(hash); khash_t(ht) *h = RHASH_TBL(hash);
khiter_t k, end; khiter_t k;
mrb_int end;
mrb_value ary; mrb_value ary;
mrb_value *p; mrb_value *p;


Expand Down

0 comments on commit 56322cd

Please sign in to comment.