Fix obsolete format traits.

They are to be removed from the language in the next rust upgrade.
This commit is contained in:
Ms2ger 2015-01-01 21:49:19 +01:00
parent 141b5d038f
commit b51e83819d
35 changed files with 63 additions and 63 deletions

View file

@ -219,7 +219,7 @@ impl<'ln> LayoutNode<'ln> {
}
s.push_str(self.debug_str().as_slice());
println!("{:s}", s);
println!("{}", s);
for kid in self.children() {
kid.dump_indent(indent + 1);