Change deprecated function Vec::from_slice
This commit is contained in:
parent
e4a3bc4437
commit
3f1d69c6ef
1 changed files with 1 additions and 1 deletions
|
@ -190,7 +190,7 @@ impl<W: Writer+Seek> ZipWriter<W>
|
|||
number_of_files: self.files.len() as u16,
|
||||
central_directory_size: central_size as u32,
|
||||
central_directory_offset: central_start as u32,
|
||||
zip_file_comment: Vec::from_slice(b"zip-rs"),
|
||||
zip_file_comment: b"zip-rs".to_vec(),
|
||||
};
|
||||
|
||||
try!(footer.write(writer));
|
||||
|
|
Loading…
Add table
Reference in a new issue