Skip to content

Commit

Permalink
clippy and cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Toyz committed Mar 21, 2024
1 parent 70ceeaf commit 102773d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ fn main() -> anyhow::Result<()> {
let frames = decoder.into_frames().collect_frames()?;
println!("\tProcessing Frames: {}", frames.len());

let output = std::fs::File::create(&output_file)?;
let output = std::fs::File::create(output_file)?;
let mut writer = BufWriter::new(output);

let mut encoder = Encoder::new(&mut writer, w as u16, h as u16, &[])?;
Expand Down

0 comments on commit 102773d

Please sign in to comment.