| 19 | static struct object_id current_commit_oid; |
| 20 | |
| 21 | void walker_say(struct walker *walker, const char *fmt, ...) |
| 22 | { |
| 23 | if (walker->get_verbosely) { |
| 24 | va_list ap; |
| 25 | va_start(ap, fmt); |
| 26 | vfprintf(stderr, fmt, ap); |
| 27 | va_end(ap); |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | static void report_missing(const struct object *obj) |
| 32 | { |
no outgoing calls
no test coverage detected