| 100 | } |
| 101 | |
| 102 | struct multi_pack_index *get_multi_pack_index(struct odb_source *source) |
| 103 | { |
| 104 | struct odb_source_files *files = odb_source_files_downcast(source); |
| 105 | packfile_store_prepare(files->packed); |
| 106 | return files->packed->midx; |
| 107 | } |
| 108 | |
| 109 | static struct multi_pack_index *load_multi_pack_index_one(struct odb_source *source, |
| 110 | const char *midx_name) |
no test coverage detected