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