diff --git a/Cargo.toml b/Cargo.toml index c06e0130..586840bb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "zip" -version = "0.1.15" +version = "0.1.16" authors = ["Mathijs van de Nes "] license = "MIT" repository = "https://github.com/mvdnes/zip-rs.git" diff --git a/src/write.rs b/src/write.rs index 73efe9ea..88dad79b 100644 --- a/src/write.rs +++ b/src/write.rs @@ -185,7 +185,7 @@ impl ZipWriter /// /// 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 + pub fn finish(&mut self) -> ZipResult { try!(self.finalize()); let inner = mem::replace(&mut self.inner, GenericZipWriter::Closed);