fix a compiler warning for uninitialized variable

This commit is contained in:
Yukihiro "Matz" Matsumoto
2016-06-10 10:11:58 +09:00
parent 8dde647a51
commit 44de80f76d
+1 -1
View File
@@ -835,7 +835,7 @@ static void
gen_call(codegen_scope *s, node *tree, mrb_sym name, int sp, int val, int safe)
{
mrb_sym sym = name ? name : sym(tree->cdr->car);
int idx, skip;
int idx, skip = 0;
int n = 0, noop = 0, sendv = 0, blk = 0;
codegen(s, tree->car, VAL); /* receiver */