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)?);