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/text.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/text.rs')
-rw-r--r-- | components/layout/text.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/text.rs b/components/layout/text.rs index ab53aa9a7f9..ea79541bde0 100644 --- a/components/layout/text.rs +++ b/components/layout/text.rs @@ -41,7 +41,7 @@ impl TextRunScanner { pub fn scan_for_runs(&mut self, font_context: &mut FontContext, mut fragments: DList<Fragment>) -> InlineFragments { - debug!("TextRunScanner: scanning {:u} fragments for text runs...", fragments.len()); + debug!("TextRunScanner: scanning {} fragments for text runs...", fragments.len()); // FIXME(pcwalton): We want to be sure not to allocate multiple times, since this is a // performance-critical spot, but this may overestimate and allocate too much memory. |