Skip to content

Commit

Permalink
Fix new clippy lints
Browse files Browse the repository at this point in the history
  • Loading branch information
newAM committed Sep 6, 2024
1 parent a18984a commit 6a375c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tls/src/crypto/aes/ghash.rs
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ fn rev32(mut x: u32) -> u32 {
x = ((x & 0x3333_3333) << 2) | (x >> 2 & 0x3333_3333);
x = ((x & 0x0f0f_0f0f) << 4) | (x >> 4 & 0x0f0f_0f0f);
x = ((x & 0x00ff_00ff) << 8) | (x >> 8 & 0x00ff_00ff);
(x << 16) | (x >> 16)
x.rotate_right(16)
}

#[cfg(test)]
Expand Down

0 comments on commit 6a375c6

Please sign in to comment.