Skip to content

Commit

Permalink
fix for clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
Toyz committed Jan 1, 2025
1 parent 81c30ff commit 0ad6b05
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 @@ -257,7 +257,7 @@ fn handle_image(
if expression_count > 1 { "s" } else { "" }
));

let absolute_path = fs::canonicalize(&output_file).unwrap_or_else(|_| output_file.to_path_buf());
let absolute_path = fs::canonicalize(output_file).unwrap_or_else(|_| output_file.to_path_buf());

println!(
"{} Output File: {}",
Expand Down

0 comments on commit 0ad6b05

Please sign in to comment.