style: cargo fmt --all

This commit is contained in:
Chris Hennick 2024-06-21 10:34:03 -07:00
parent ad111aa297
commit 26e6462a8d
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -773,7 +773,8 @@ impl<R: Read + Seek> ZipArchive<R> {
Err(e) => invalid_errors.push(e),
Ok(o) => {
if o.files.len() == footer.number_of_files as usize
|| footer.number_of_files == ZIP64_ENTRY_THR as u16 {
|| footer.number_of_files == ZIP64_ENTRY_THR as u16
{
ok_results.push((footer.clone(), o))
} else {
invalid_errors.push(InvalidArchive("wrong number of files"))