fix: Clippy needless borrow
This commit is contained in:
parent
03f5009c34
commit
f3d683a64c
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ fn real_main() -> i32 {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
let fname = std::path::Path::new(&*args[1]);
|
let fname = std::path::Path::new(&*args[1]);
|
||||||
let file = fs::File::open(&fname).unwrap();
|
let file = fs::File::open(fname).unwrap();
|
||||||
|
|
||||||
let mut archive = zip::ZipArchive::new(file).unwrap();
|
let mut archive = zip::ZipArchive::new(file).unwrap();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue