Fixed new Clippy Warnings

This commit is contained in:
Wyatt Herkamp 2022-10-07 13:20:50 -04:00
parent d59adf0990
commit 2b9efe97ba
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@ hmac = { version = "0.12.1", optional = true, features = ["reset"] }
pbkdf2 = {version = "0.11.0", optional = true }
sha1 = {version = "0.10.1", optional = true }
time = { version = "0.3.7", features = ["formatting", "macros" ], optional = true }
zstd = { version = "0.11", optional = true }
zstd = { version = "0.11.2", optional = true }
[target.'cfg(any(all(target_arch = "arm", target_pointer_width = "32"), target_arch = "mips", target_arch = "powerpc"))'.dependencies]
crossbeam-utils = "0.8.8"

View file

@ -11,7 +11,7 @@ fn real_main() -> i32 {
return 1;
}
let fname = std::path::Path::new(&*args[1]);
let zipfile = std::fs::File::open(&fname).unwrap();
let zipfile = std::fs::File::open(fname).unwrap();
let mut archive = zip::ZipArchive::new(zipfile).unwrap();