Skip to content

Commit 9bf6d96

Browse files
committed
clippy
1 parent c7d57e2 commit 9bf6d96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ pub fn decompress_into_arc(
602602
// Safety: We know that the buffer is not shared yet.
603603
let decompressed = unsafe { Arc::get_mut_unchecked(&mut buffer) };
604604
// Safety: decompress_with_dict will only write to `decompressed` and not read from it.
605-
let bytes_writes = decompress_with_dict(&block, decompressed, compression_dictionary)?;
605+
let bytes_writes = decompress_with_dict(block, decompressed, compression_dictionary)?;
606606
assert_eq!(
607607
bytes_writes, uncompressed_length as usize,
608608
"Decompressed length does not match expected length"

0 commit comments

Comments
 (0)