Bug fix
This commit is contained in:
parent
e30f57f344
commit
6ec619d78a
1 changed files with 1 additions and 1 deletions
|
@ -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)?);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue