From 40c710ab199fc93ea7869f588be9a96463125c76 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Sat, 28 Mar 2015 22:32:43 +0100 Subject: [PATCH] Pass u32 to LayoutNode::dump_indent. --- components/layout/wrapper.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/layout/wrapper.rs b/components/layout/wrapper.rs index 3f40945ec7d..9e3a6be89a4 100644 --- a/components/layout/wrapper.rs +++ b/components/layout/wrapper.rs @@ -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(" ");