Merge pull request #3393 from clayton-shopify/fix-exc-initialize

Fix broken MRB_INT64
This commit is contained in:
Yukihiro "Matz" Matsumoto
2017-01-12 15:31:32 +09:00
committed by GitHub
+1 -1
View File
@@ -44,7 +44,7 @@ static mrb_value
exc_initialize(mrb_state *mrb, mrb_value exc)
{
mrb_value mesg;
int argc;
mrb_int argc;
mrb_value *argv;
if (mrb_get_args(mrb, "|o*", &mesg, &argv, &argc) >= 1) {