summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-struct
diff options
context:
space:
mode:
authortake_cheeze <[email protected]>2014-04-25 22:02:10 +0900
committertake_cheeze <[email protected]>2014-04-25 22:02:10 +0900
commitb5028421b9fc0df9c4706ee5e3095a9c00f8f383 (patch)
tree628c9016ec18972b43e1abaa243528f2a02f7950 /mrbgems/mruby-struct
parent49abcd4c0281d00030a540f7426de72882806dd4 (diff)
downloadmruby-b5028421b9fc0df9c4706ee5e3095a9c00f8f383.tar.gz
mruby-b5028421b9fc0df9c4706ee5e3095a9c00f8f383.zip
Use mrb_int in mrbgem rest argument getting.
Diffstat (limited to 'mrbgems/mruby-struct')
-rw-r--r--mrbgems/mruby-struct/src/struct.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mrbgems/mruby-struct/src/struct.c b/mrbgems/mruby-struct/src/struct.c
index b5b498009..43cacbc4e 100644
--- a/mrbgems/mruby-struct/src/struct.c
+++ b/mrbgems/mruby-struct/src/struct.c
@@ -347,7 +347,7 @@ mrb_struct_s_def(mrb_state *mrb, mrb_value klass)
mrb_value b, st;
mrb_sym id;
mrb_value *argv;
- int argc;
+ mrb_int argc;
name = mrb_nil_value();
rest = mrb_nil_value();
@@ -428,7 +428,7 @@ static mrb_value
mrb_struct_initialize_m(mrb_state *mrb, /*int argc, mrb_value *argv,*/ mrb_value self)
{
mrb_value *argv;
- int argc;
+ mrb_int argc;
mrb_get_args(mrb, "*", &argv, &argc);
return mrb_struct_initialize_withArg(mrb, argc, argv, self);