| 8 | #include "packfile.h" |
| 9 | |
| 10 | static uint32_t pack_geometry_weight(struct packed_git *p) |
| 11 | { |
| 12 | if (open_pack_index(p)) |
| 13 | die(_("cannot open index for %s"), p->pack_name); |
| 14 | return p->num_objects; |
| 15 | } |
| 16 | |
| 17 | static int pack_geometry_cmp(const void *va, const void *vb) |
| 18 | { |
no test coverage detected