aboutsummaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authorMs2ger <Ms2ger@gmail.com>2016-07-07 12:28:53 +0200
committerMs2ger <Ms2ger@gmail.com>2016-07-08 16:44:50 +0200
commite7f9959ad96c51afdd6b5e74e2285f67b1bda228 (patch)
tree859dad73b11839931d5995645479e7a18482b71b /components
parent8dd711d3db58ea5524624a4d39eb3787ccc5cb9f (diff)
downloadservo-e7f9959ad96c51afdd6b5e74e2285f67b1bda228.tar.gz
servo-e7f9959ad96c51afdd6b5e74e2285f67b1bda228.zip
Fix a build warning in animation.rs.
Diffstat (limited to 'components')
-rw-r--r--components/style/animation.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/style/animation.rs b/components/style/animation.rs
index 1f0cbcaefde..9d8b88f0c1f 100644
--- a/components/style/animation.rs
+++ b/components/style/animation.rs
@@ -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();