| 123 | } |
| 124 | |
| 125 | struct packed_git *packfile_list_find_oid(struct packfile_list_entry *packs, |
| 126 | const struct object_id *oid) |
| 127 | { |
| 128 | for (; packs; packs = packs->next) |
| 129 | if (find_pack_entry_one(oid, packs->pack)) |
| 130 | return packs->pack; |
| 131 | return NULL; |
| 132 | } |
| 133 | |
| 134 | void pack_report(struct repository *repo) |
| 135 | { |
no test coverage detected