Skip to content

Commit 9f5885b

Browse files
committed
clippy
1 parent e76e5b2 commit 9f5885b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

turbopack/crates/turbo-persistence/src/static_sorted_file.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -601,9 +601,9 @@ fn decompress_into_arc(
601601
let decompressed = unsafe { Arc::get_mut_unchecked(&mut buffer) };
602602
// Safety: decompress_with_dict will only write to `decompressed` and not read from it.
603603
let bytes_writes = if let Some(dict) = compression_dictionary {
604-
decompress_with_dict(&block, decompressed, dict)?
604+
decompress_with_dict(block, decompressed, dict)?
605605
} else {
606-
decompress(&block, decompressed)?
606+
decompress(block, decompressed)?
607607
};
608608
assert_eq!(
609609
bytes_writes, uncompressed_length as usize,

0 commit comments

Comments
 (0)