style: Fix cargo fmt check
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
This commit is contained in:
parent
a4915fdcd7
commit
1bb0b14456
1 changed files with 4 additions and 1 deletions
|
@ -264,7 +264,10 @@ impl Zip32CentralDirectoryEnd {
|
||||||
number_of_files,
|
number_of_files,
|
||||||
central_directory_size,
|
central_directory_size,
|
||||||
central_directory_offset,
|
central_directory_offset,
|
||||||
zip_file_comment_length: zip_file_comment.len().try_into().map_err(|_| ZipError::InvalidArchive("File comment must be less than 64 KiB"))?,
|
zip_file_comment_length: zip_file_comment
|
||||||
|
.len()
|
||||||
|
.try_into()
|
||||||
|
.map_err(|_| ZipError::InvalidArchive("File comment must be less than 64 KiB"))?,
|
||||||
};
|
};
|
||||||
Ok((block, zip_file_comment))
|
Ok((block, zip_file_comment))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue