chore: Fix conflicts with other recently-merged PRs

This commit is contained in:
Chris Hennick 2024-05-02 19:20:43 -07:00 committed by Danny McClanahan
parent 20bfcd960c
commit a86a72fdc6
No known key found for this signature in database
GPG key ID: 6105C10F1A199CC7

View file

@ -343,7 +343,8 @@ impl<R> ZipArchive<R> {
));
}
/* This is where the whole file starts. */
let initial_offset = files.first().unwrap().1.header_start;
let (_, first_header) = files.first().unwrap();
let initial_offset = first_header.header_start;
let shared = Arc::new(zip_archive::Shared {
files,
offset: initial_offset,