Bug 778600 - Indent closing brace when listing GroupRules. r=dbaron

This commit is contained in:
Cameron McCormack 2012-08-04 17:07:03 +10:00
Родитель f33969b29e
Коммит e67e975977
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -560,6 +560,8 @@ GroupRule::List(FILE* out, PRInt32 aIndent) const
for (PRInt32 index = 0, count = mRules.Count(); index < count; ++index) {
mRules.ObjectAt(index)->List(out, aIndent + 1);
}
for (PRInt32 indent = aIndent; --indent >= 0; ) fputs(" ", out);
fputs("}\n", out);
}
#endif