diff --git a/ports/geckolib/glue.rs b/ports/geckolib/glue.rs index f16214c6df5..e485e02e6e5 100644 --- a/ports/geckolib/glue.rs +++ b/ports/geckolib/glue.rs @@ -763,10 +763,10 @@ pub extern "C" fn Servo_AnimationValue_Transform( } #[no_mangle] -pub extern "C" fn Servo_AnimationValue_DeepEqual(this: RawServoAnimationValueBorrowed, - other: RawServoAnimationValueBorrowed) - -> bool -{ +pub extern "C" fn Servo_AnimationValue_DeepEqual( + this: RawServoAnimationValueBorrowed, + other: RawServoAnimationValueBorrowed, +) -> bool { let this_value = AnimationValue::as_arc(&this); let other_value = AnimationValue::as_arc(&other); this_value == other_value