Skip to content

Commit

Permalink
Fix warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonSapin committed Oct 30, 2015
1 parent 3e2e0b5 commit fa477fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/serializer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ impl<'a> ToCss for Token<'a> {
if truncated_start != 0 {
try!(write!(dest, "{:X}", truncated_start));
}
for _ in (0..question_marks) {
for _ in 0..question_marks {
try!(dest.write_str("?"));
}
} else {
Expand Down

0 comments on commit fa477fd

Please sign in to comment.