put spaces after if/while

This commit is contained in:
Yukihiro "Matz" Matsumoto
2013-04-20 23:11:43 +09:00
parent 2acf724554
commit c79172dfd5
10 changed files with 47 additions and 47 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ static mrb_value mrb_str_subseq(mrb_state *mrb, mrb_value str, mrb_int beg, mrb_
#define RESIZE_CAPA(s,capacity) do {\
s->ptr = (char *)mrb_realloc(mrb, s->ptr, (capacity)+1);\
s->aux.capa = capacity;\
} while (0)
} while(0)
void
mrb_str_decref(mrb_state *mrb, mrb_shared_string *shared)