mirror of
https://github.com/servo/servo.git
synced 2025-07-22 14:53:49 +01:00
Fix a build warning in animation.rs.
This commit is contained in:
parent
8dd711d3db
commit
e7f9959ad9
1 changed files with 1 additions and 1 deletions
|
@ -498,7 +498,7 @@ where Impl: SelectorImplExt,
|
|||
debug!("update_style_for_animation: entering");
|
||||
debug_assert!(!animation.is_expired());
|
||||
match *animation {
|
||||
Animation::Transition(_, start_time, ref frame, expired) => {
|
||||
Animation::Transition(_, start_time, ref frame, _) => {
|
||||
debug!("update_style_for_animation: transition found");
|
||||
let now = time::precise_time_s();
|
||||
let mut new_style = (*style).clone();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue