diff options
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. |