| ... | @@ -1,5 +1,3 @@ | ... | @@ -1,5 +1,3 @@ |
| 1 | header: ar_hdr, | | |
| 2 | | | |
| 3 | /// A list of long file names, delimited by a LF character (0x0a). | 1 | /// A list of long file names, delimited by a LF character (0x0a). |
| 4 | /// This is stored as a single slice of bytes, as the header-names | 2 | /// This is stored as a single slice of bytes, as the header-names |
| 5 | /// point to the character index of a file name, rather than the index | 3 | /// point to the character index of a file name, rather than the index |
| ... | @@ -110,7 +108,6 @@ pub fn parse(gpa: Allocator, file_contents: []const u8) !Archive { | ... | @@ -110,7 +108,6 @@ pub fn parse(gpa: Allocator, file_contents: []const u8) !Archive { |
| 110 | errdefer gpa.free(long_file_names); | 108 | errdefer gpa.free(long_file_names); |
| 111 | | 109 | |
| 112 | return .{ | 110 | return .{ |
| 113 | .header = header, | | |
| 114 | .toc = toc, | 111 | .toc = toc, |
| 115 | .long_file_names = long_file_names, | 112 | .long_file_names = long_file_names, |
| 116 | }; | 113 | }; |