Fix param order in central_header_to_zip_file_inner
Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
parent
e99c15471c
commit
08c2e76705
1 changed files with 1 additions and 1 deletions
|
@ -663,8 +663,8 @@ pub(crate) fn central_header_to_zip_file<R: Read + io::Seek>(
|
||||||
/// Parse a central directory entry to collect the information for the file.
|
/// Parse a central directory entry to collect the information for the file.
|
||||||
fn central_header_to_zip_file_inner<R: Read>(
|
fn central_header_to_zip_file_inner<R: Read>(
|
||||||
reader: &mut R,
|
reader: &mut R,
|
||||||
central_header_start: u64,
|
|
||||||
archive_offset: u64,
|
archive_offset: u64,
|
||||||
|
central_header_start: u64,
|
||||||
) -> ZipResult<ZipFileData> {
|
) -> ZipResult<ZipFileData> {
|
||||||
let version_made_by = reader.read_u16::<LittleEndian>()?;
|
let version_made_by = reader.read_u16::<LittleEndian>()?;
|
||||||
let _version_to_extract = reader.read_u16::<LittleEndian>()?;
|
let _version_to_extract = reader.read_u16::<LittleEndian>()?;
|
||||||
|
|
Loading…
Add table
Reference in a new issue