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
@@ -686,7 +686,7 @@ mrb_include_module(mrb_state *mrb, struct RClass *c, struct RClass *m)
struct RClass *p = c, *ic;
int superclass_seen = 0;
while(p) {
while (p) {
if (c != p && p->tt == MRB_TT_CLASS) {
superclass_seen = 1;
}