| 29 | } |
| 30 | |
| 31 | static void report_missing(const struct object *obj) |
| 32 | { |
| 33 | fprintf(stderr, "Cannot obtain needed %s %s\n", |
| 34 | obj->type ? type_name(obj->type): "object", |
| 35 | oid_to_hex(&obj->oid)); |
| 36 | if (!is_null_oid(¤t_commit_oid)) |
| 37 | fprintf(stderr, "while processing commit %s.\n", |
| 38 | oid_to_hex(¤t_commit_oid)); |
| 39 | } |
| 40 | |
| 41 | static int process(struct walker *walker, struct object *obj); |
| 42 |
no test coverage detected