Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Pr0methean committed Dec 1, 2023
1 parent 49b0256 commit 356af26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/deflate/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use std::io::{copy, BufWriter, Cursor, Write};
use std::{fmt, fmt::Display, io};

#[cfg(feature = "zopfli")]
use zopfli::{DeflateEncoder, Options};
use zopfli::{DeflateEncoder};
#[cfg(feature = "zopfli")]
mod zopfli_oxipng;
#[cfg(feature = "zopfli")]
Expand All @@ -30,7 +30,7 @@ pub enum Deflaters {
/// Use the better but slower Zopfli implementation
Zopfli {
/// Zopfli compression options
options: Options,
options: ZopfliOptions,
},
}

Expand Down

0 comments on commit 356af26

Please sign in to comment.