fix nightly clippy warnings in examples
This commit is contained in:
parent
91745d5d27
commit
c8aece8f7b
2 changed files with 2 additions and 2 deletions
|
@ -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 {
|
||||||
|
|
|
@ -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,
|
||||||
|
|
Loading…
Add table
Reference in a new issue