mirror of
https://github.com/servo/servo.git
synced 2025-06-06 00:25:37 +00:00
Add missing try!() around write!()
Fixes "unused result" warning.
This commit is contained in:
parent
d690bd2382
commit
84fed1a62f
1 changed files with 1 additions and 1 deletions
|
@ -468,7 +468,7 @@ fn append_serialization<'a, W, I>(dest: &mut W,
|
|||
return append_declaration_value(dest, appendable_value, is_important);
|
||||
}
|
||||
|
||||
write!(dest, "{}:", property_name);
|
||||
try!(write!(dest, "{}:", property_name));
|
||||
|
||||
// for normal parsed values, add a space between key: and value
|
||||
match &appendable_value {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue