From 69b38b3ce54079e6057369e4aa1733e65688839b Mon Sep 17 00:00:00 2001 From: Mathijs van de Nes Date: Tue, 24 Feb 2015 14:37:46 +0100 Subject: [PATCH] Update Write for spec --- src/spec.rs | 4 +++- src/writer.rs | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/spec.rs b/src/spec.rs index f97e7247..2bc0f96d 100644 --- a/src/spec.rs +++ b/src/spec.rs @@ -1,6 +1,8 @@ use std::old_io; +use std::io::prelude::*; use result::{ZipResult, ZipError}; use std::iter::range_step_inclusive; +use util::WriteIntExt; pub static LOCAL_FILE_HEADER_SIGNATURE : u32 = 0x04034b50; pub static CENTRAL_DIRECTORY_HEADER_SIGNATURE : u32 = 0x02014b50; @@ -72,7 +74,7 @@ impl CentralDirectoryEnd Err(ZipError::UnsupportedZipFile("Could not find central directory end")) } - pub fn write(&self, writer: &mut T) -> ZipResult<()> + pub fn write(&self, writer: &mut T) -> ZipResult<()> { try!(writer.write_le_u32(CENTRAL_DIRECTORY_END_SIGNATURE)); try!(writer.write_le_u16(self.disk_number)); diff --git a/src/writer.rs b/src/writer.rs index af1c4521..5bf2a4ad 100644 --- a/src/writer.rs +++ b/src/writer.rs @@ -206,7 +206,7 @@ impl ZipWriter zip_file_comment: b"zip-rs".to_vec(), }; - try!(footer.write(&mut IoConverter::new(writer))); + try!(footer.write(writer)); } Ok(())