Skip to content

Commit 499e366

Browse files
committed
chore(gardening): make clippy happy
1 parent ce10ea0 commit 499e366

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/decor_effect.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ fn apply_effect(
100100
effect: Box<dyn Fn(PathBuf) -> Result<()> + Send + Sync>,
101101
) {
102102
time_codes.into_par_iter().for_each(|tc| {
103-
let file = tempdir.path().join(file_name_for(&tc, "tga"));
103+
let file = tempdir.path().join(file_name_for(tc, "tga"));
104104
if let Err(e) = effect(file) {
105105
eprintln!("{}", e);
106106
}

0 commit comments

Comments
 (0)