Add a space aftre bracket.

This commit is contained in:
yui-knk
2014-05-18 19:40:17 +09:00
parent 1f6d8d73bd
commit 45305686fe
6 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -739,7 +739,7 @@ mrb_hash_values(mrb_state *mrb, mrb_value hash)
if (!h) return mrb_ary_new(mrb);
ary = mrb_ary_new_capa(mrb, kh_size(h));
for (k = kh_begin(h); k != kh_end(h); k++) {
if (kh_exist(h, k)){
if (kh_exist(h, k)) {
mrb_hash_value hv = kh_value(h,k);
mrb_ary_set(mrb, ary, hv.n, hv.v);