fix nightly clippy warnings in examples

This commit is contained in:
Lireer 2022-01-30 15:32:40 +01:00
parent 91745d5d27
commit c8aece8f7b
2 changed files with 2 additions and 2 deletions

View file

@ -30,7 +30,7 @@ fn real_main() -> i32 {
} }
} }
if (&*file.name()).ends_with('/') { if (*file.name()).ends_with('/') {
println!("File {} extracted to \"{}\"", i, outpath.display()); println!("File {} extracted to \"{}\"", i, outpath.display());
fs::create_dir_all(&outpath).unwrap(); fs::create_dir_all(&outpath).unwrap();
} else { } else {

View file

@ -34,7 +34,7 @@ fn real_main() -> i32 {
} }
} }
if (&*file.name()).ends_with('/') { if (*file.name()).ends_with('/') {
println!( println!(
"Entry {} is a directory with name \"{}\"", "Entry {} is a directory with name \"{}\"",
i, i,