fix: Clippy needless borrow

This commit is contained in:
Kyle Bloom 2023-01-31 17:32:55 +00:00
parent 03f5009c34
commit f3d683a64c

View file

@ -12,7 +12,7 @@ fn real_main() -> i32 {
return 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();