diff --git a/examples/extract.rs b/examples/extract.rs index 7e32f987..38f8ca55 100644 --- a/examples/extract.rs +++ b/examples/extract.rs @@ -40,7 +40,7 @@ fn main() } } -fn write_file(reader: &mut zip::read::ZipFileReader, outpath: Path) +fn write_file(reader: &mut zip::read::ZipFile, outpath: Path) { let mut outfile = fs::File::create(&outpath).unwrap(); io::copy(reader, &mut outfile).unwrap();