diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-04-26 01:53:15 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-04-26 01:53:15 +0900 |
| commit | 2202e412ea6ac44a5bcdaa2640fda0b7485437ca (patch) | |
| tree | 3e217007696283ad64188ae979a1c0de33a0d947 /mrbgems/mruby-hash-ext/src/hash-ext.c | |
| parent | 44ec41a7724ef3591e9d4033655fa12e79b9ff2b (diff) | |
| parent | b8e5cb71fe4b7e5377facf23ecebd0dd4bc4d1ab (diff) | |
| download | mruby-2202e412ea6ac44a5bcdaa2640fda0b7485437ca.tar.gz mruby-2202e412ea6ac44a5bcdaa2640fda0b7485437ca.zip | |
Merge branch 'master' of github.com:mruby/mruby
Diffstat (limited to 'mrbgems/mruby-hash-ext/src/hash-ext.c')
| -rw-r--r-- | mrbgems/mruby-hash-ext/src/hash-ext.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mrbgems/mruby-hash-ext/src/hash-ext.c b/mrbgems/mruby-hash-ext/src/hash-ext.c index 937a7fddd..bce842cb4 100644 --- a/mrbgems/mruby-hash-ext/src/hash-ext.c +++ b/mrbgems/mruby-hash-ext/src/hash-ext.c @@ -23,7 +23,8 @@ static mrb_value hash_values_at(mrb_state *mrb, mrb_value hash) { mrb_value *argv, result; - int argc, i, ai; + mrb_int argc, i; + int ai; mrb_get_args(mrb, "*", &argv, &argc); result = mrb_ary_new_capa(mrb, argc); |
