This commit is contained in:
Chris Hennick 2023-05-27 17:30:50 -07:00
parent e30f57f344
commit 6ec619d78a
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74

View file

@ -173,7 +173,7 @@ impl arbitrary::Arbitrary<'_> for FileOptions {
let level = u.int_in_range(0..=265)?;
options.compression_level = Some(level);
#[cfg(feature = "deflate-zopfli")]
if level > Compression::best().level() {
if level > Compression::best().level().try_into().unwrap() {
options.zopfli_buffer_size = Some(1 << u.int_in_range(9..=30)?);
}
}