Skip to content

Commit

Permalink
more beta clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
BrettMayson committed Jan 16, 2025
1 parent 4680a1b commit 32a9b1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/lzo/src/compress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ unsafe extern "C" fn lzo1x_1_do_compress(
let old = op;
op = op.offset(1isize);
old
} = (m_len.wrapping_sub(1usize) << 5i32 | ((m_off & 7usize) << 2i32)) as u8;
} = ((m_len.wrapping_sub(1usize) << 5i32) | ((m_off & 7usize) << 2i32)) as u8;
*{
let old = op;
op = op.offset(1isize);
Expand Down

0 comments on commit 32a9b1d

Please sign in to comment.