From c0cc03c0e7223d5619e34afddd881b72ccf81145 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Mon, 3 Jun 2024 20:25:36 -0700 Subject: [PATCH] style: cargo fmt --all --- src/write.rs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/write.rs b/src/write.rs index 82764af6..b50703e6 100644 --- a/src/write.rs +++ b/src/write.rs @@ -287,11 +287,8 @@ impl<'a> arbitrary::Arbitrary<'a> for FileOptions<'a, ExtendedFileOptions> { }; #[cfg(feature = "deflate-zopfli")] if options.compression_method == CompressionMethod::Deflated && bool::arbitrary(u)? { - options.zopfli_buffer_size = Some(1 << u.int_in_range(8..=29)? * if bool::arbitrary(u) { - 2 - } else { - 3 - }); + options.zopfli_buffer_size = + Some(1 << u.int_in_range(8..=29)? * if bool::arbitrary(u) { 2 } else { 3 }); } u.arbitrary_loop(Some(0), Some((u16::MAX / 4) as u32), |u| { options