Fix one overlooked example

This commit is contained in:
Mathijs van de Nes 2015-03-01 11:57:50 +01:00
parent cd52df6a18
commit 86ec190ba6

View file

@ -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();