Skip to content

Commit 48c2ac1

Browse files
committed
negentropy: fix clippy
1 parent 46e82c8 commit 48c2ac1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

negentropy/src/types.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,8 +211,8 @@ impl Accumulator {
211211
let mut wtr = Vec::with_capacity(ID_SIZE);
212212

213213
for i in 0..4 {
214-
let orig = Wrapping(u64::from_le_bytes(p[(i*8)..(i*8 + 8)].try_into()?));
215-
let other_v = Wrapping(u64::from_le_bytes(po[(i*8)..(i*8 + 8)].try_into()?));
214+
let orig = Wrapping(u64::from_le_bytes(p[(i * 8)..(i * 8 + 8)].try_into()?));
215+
let other_v = Wrapping(u64::from_le_bytes(po[(i * 8)..(i * 8 + 8)].try_into()?));
216216

217217
let mut next = orig;
218218

0 commit comments

Comments
 (0)