| 2744 | static int verify_commit_graph_error; |
| 2745 | |
| 2746 | __attribute__((format (printf, 1, 2))) |
| 2747 | static 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 | |
| 2758 | static int commit_graph_checksum_valid(struct commit_graph *g) |
| 2759 | { |
no outgoing calls
no test coverage detected