mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Fix crash in debug logging of FontList. Closes #204.
This commit is contained in:
parent
77a5d8b107
commit
fe29edb5f6
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ pub impl FontList {
|
||||||
}
|
}
|
||||||
|
|
||||||
let decision = if result.is_some() { "Found" } else { "Couldn't find" };
|
let decision = if result.is_some() { "Found" } else { "Couldn't find" };
|
||||||
debug!("FontList: %s font face in family[%?] matching style: %?", decision, style, family_name);
|
debug!("FontList: %s font face in family[%s] matching style", decision, family_name);
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue