Skip to content

Commit 8884557

Browse files
committed
clippy
1 parent 8a08dca commit 8884557

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

digest/src/mac.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ impl<T: KeyInit + Update + FixedOutput + MacMarker> Mac for T {
101101
if n != Self::OutputSize::USIZE {
102102
return Err(MacError);
103103
}
104-
let choice = self.finalize_fixed().ct_eq(&tag);
104+
let choice = self.finalize_fixed().ct_eq(tag);
105105
if choice.unwrap_u8() == 1 {
106106
Ok(())
107107
} else {

0 commit comments

Comments
 (0)