diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-01-03 14:39:46 -0700 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-01-03 14:39:46 -0700 |
commit | e8fac3681b690adb0796b2a807ac95bd9c13597a (patch) | |
tree | b8ad816b28494d51229edb93f4459d092ac9d92d /components/layout/inline.rs | |
parent | d8b6cec722e67f1fd39f154f4f0a298f2227501f (diff) | |
parent | d5c64f7f30054996e4db70d59cc6fb34e0be987d (diff) | |
download | servo-e8fac3681b690adb0796b2a807ac95bd9c13597a.tar.gz servo-e8fac3681b690adb0796b2a807ac95bd9c13597a.zip |
auto merge of #4535 : servo/servo/pre-rustup_20141221, r=jdm
This prepares for the rust upgrade currently being conducted.
Diffstat (limited to 'components/layout/inline.rs')
-rw-r--r-- | components/layout/inline.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/inline.rs b/components/layout/inline.rs index fdea1dcdcfa..2230fb3e823 100644 --- a/components/layout/inline.rs +++ b/components/layout/inline.rs @@ -1237,7 +1237,7 @@ impl Flow for InlineFlow { fn build_display_list(&mut self, layout_context: &LayoutContext) { // TODO(#228): Once we form lines and have their cached bounds, we can be smarter and // not recurse on a line if nothing in it can intersect the dirty region. - debug!("Flow: building display list for {:u} inline fragments", self.fragments.len()); + debug!("Flow: building display list for {} inline fragments", self.fragments.len()); let mut display_list = box DisplayList::new(); for fragment in self.fragments.fragments.iter_mut() { |