diff options
author | Jack Moffitt <jack@metajack.im> | 2014-09-13 23:38:00 -0600 |
---|---|---|
committer | Jack Moffitt <jack@metajack.im> | 2014-09-13 23:38:00 -0600 |
commit | e10206e91e38ee87b8c0df3fb4d64d52fd03e481 (patch) | |
tree | c989228e7167bddea39cb9c16a0f73780dac0341 /components/gfx/font_cache_task.rs | |
parent | 97e068b1c27b2b2aa48e38550e6adbdc42bba8c3 (diff) | |
download | servo-e10206e91e38ee87b8c0df3fb4d64d52fd03e481.tar.gz servo-e10206e91e38ee87b8c0df3fb4d64d52fd03e481.zip |
Reinstate errors for unused variables and imports.
Diffstat (limited to 'components/gfx/font_cache_task.rs')
-rw-r--r-- | components/gfx/font_cache_task.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/gfx/font_cache_task.rs b/components/gfx/font_cache_task.rs index 8307be83715..9dd453fa8a2 100644 --- a/components/gfx/font_cache_task.rs +++ b/components/gfx/font_cache_task.rs @@ -127,7 +127,7 @@ impl FontCache { let family = self.web_families.get_mut(&family_name); family.add_template(format!("{}", url).as_slice(), Some(bytes)); }, - Err(msg) => { + Err(_) => { debug!("Failed to load web font: family={} url={}", family_name, url); } } |