From d2e2b546255bac8d3844973d644525dcc00d5cee Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Sat, 27 May 2023 17:05:49 -0700 Subject: [PATCH] Reformat --- src/write.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/write.rs b/src/write.rs index 8fe8d8ee..374f237c 100644 --- a/src/write.rs +++ b/src/write.rs @@ -176,12 +176,12 @@ impl arbitrary::Arbitrary<'_> for FileOptions { options.zopfli_buffer_size = Some(1 << u.int_in_range(9..=30)?); } } - }, + } Stored => { if bool::arbitrary(u)? { options.compression_level = Some(1); } - }, + } _ => { if bool::arbitrary(u)? { options.compression_level = Some(u.int_in_range(0..=10)?);