change else formatting

This commit is contained in:
Yukihiro "Matz" Matsumoto
2013-07-22 09:52:06 +09:00
parent 9f9418eacf
commit 2daf39ddc8
6 changed files with 28 additions and 14 deletions
+2 -1
View File
@@ -926,7 +926,8 @@ inspect_ary(mrb_state *mrb, mrb_value ary, mrb_value list)
}
if (mrb_array_p(RARRAY_PTR(ary)[i])) {
s = inspect_ary(mrb, RARRAY_PTR(ary)[i], list);
} else {
}
else {
s = mrb_inspect(mrb, RARRAY_PTR(ary)[i]);
}
mrb_str_buf_cat(mrb, arystr, RSTRING_PTR(s), RSTRING_LEN(s));