Pass u32 to LayoutNode::dump_indent.

This commit is contained in:
Ms2ger 2015-03-28 22:32:43 +01:00
parent 7a2ab2784d
commit 40c710ab19

View file

@ -248,7 +248,7 @@ impl<'ln> LayoutNode<'ln> {
self.dump_indent(0);
}
fn dump_indent(self, indent: uint) {
fn dump_indent(self, indent: u32) {
let mut s = String::new();
for _ in range(0, indent) {
s.push_str(" ");