Bug 1100773 patch 1 - Fix bracing of indent loops in style rule print functions. r=heycam

This commit is contained in:
L. David Baron
2014-11-26 22:29:44 -08:00
parent 759583e9b0
commit 4bd15269cc
10 changed files with 77 additions and 26 deletions

View File

@@ -171,7 +171,9 @@ BodyRule::MapRuleInfoInto(nsRuleData* aData)
/* virtual */ void
BodyRule::List(FILE* out, int32_t aIndent) const
{
for (int32_t index = aIndent; --index >= 0; ) fputs(" ", out);
for (int32_t index = aIndent; --index >= 0; ) {
fputs(" ", out);
}
fputs("[body rule] {}\n", out);
}
#endif