MCPcopy Index your code
hub / github.com/git/git / report_missing

Function report_missing

walker.c:31–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29}
30
31static 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(&current_commit_oid))
37 fprintf(stderr, "while processing commit %s.\n",
38 oid_to_hex(&current_commit_oid));
39}
40
41static int process(struct walker *walker, struct object *obj);
42

Callers 1

loopFunction · 0.85

Calls 3

type_nameFunction · 0.85
oid_to_hexFunction · 0.85
is_null_oidFunction · 0.85

Tested by

no test coverage detected