indentation fix

parent a1c6996f
...@@ -96,7 +96,8 @@ os_count_objects(mrb_state *mrb, mrb_value self) ...@@ -96,7 +96,8 @@ os_count_objects(mrb_state *mrb, mrb_value self)
COUNT_TYPE(MRB_TT_ENV); COUNT_TYPE(MRB_TT_ENV);
COUNT_TYPE(MRB_TT_DATA); COUNT_TYPE(MRB_TT_DATA);
#undef COUNT_TYPE #undef COUNT_TYPE
default: type = mrb_fixnum_value(i); break; default:
type = mrb_fixnum_value(i); break;
} }
if (obj_count.counts[i]) if (obj_count.counts[i])
mrb_hash_set(mrb, hash, type, mrb_fixnum_value(obj_count.counts[i])); mrb_hash_set(mrb, hash, type, mrb_fixnum_value(obj_count.counts[i]));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment