Skip to content

Commit

Permalink
chore: micro clippy adjust
Browse files Browse the repository at this point in the history
  • Loading branch information
alphastrata committed Jan 30, 2024
1 parent 878d5a5 commit fe3e2d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/system/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ impl UserSession {
let image = self.pop_gif_buffer(&mut images).unwrap();
let dynamic = image.clone().try_into_dynamic().unwrap();
// let filename = format!(".gif_scratch/{:05}.png", *local);
let filename = format!("output.png");
let filename = "output.png".to_string();
let format = image::ImageFormat::from_path(filename.clone()).unwrap();
log::debug!("ImSize: {}b", image.data.len());
log::debug!("ImCompressed: {}", image.is_compressed());
Expand Down

0 comments on commit fe3e2d6

Please sign in to comment.