parent
aaa49eb4f1
commit
d95c925ac2
2 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
|
||||
name = "zip"
|
||||
version = "0.1.15"
|
||||
version = "0.1.16"
|
||||
authors = ["Mathijs van de Nes <git@mathijs.vd-nes.nl>"]
|
||||
license = "MIT"
|
||||
repository = "https://github.com/mvdnes/zip-rs.git"
|
||||
|
|
|
@ -185,7 +185,7 @@ impl<W: Write+io::Seek> ZipWriter<W>
|
|||
///
|
||||
/// This will return the writer, but one should normally not append any data to the end of the file.
|
||||
/// Note that the zipfile will also be finished on drop.
|
||||
pub fn finish(mut self) -> ZipResult<W>
|
||||
pub fn finish(&mut self) -> ZipResult<W>
|
||||
{
|
||||
try!(self.finalize());
|
||||
let inner = mem::replace(&mut self.inner, GenericZipWriter::Closed);
|
||||
|
|
Loading…
Add table
Reference in a new issue