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

Function graph_report

commit-graph.c:2746–2756  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2744static int verify_commit_graph_error;
2745
2746__attribute__((format (printf, 1, 2)))
2747static void graph_report(const char *fmt, ...)
2748{
2749 va_list ap;
2750
2751 verify_commit_graph_error = 1;
2752 va_start(ap, fmt);
2753 vfprintf(stderr, fmt, ap);
2754 fprintf(stderr, "\n");
2755 va_end(ap);
2756}
2757
2758static int commit_graph_checksum_valid(struct commit_graph *g)
2759{

Callers 2

verify_one_commit_graphFunction · 0.85
verify_commit_graphFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected