MCPcopy Create free account
hub / github.com/git/git / fsck_report_ref

Function fsck_report_ref

fsck.c:282–293  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

280}
281
282int fsck_report_ref(struct fsck_options *options,
283 struct fsck_ref_report *report,
284 enum fsck_msg_id msg_id,
285 const char *fmt, ...)
286{
287 va_list ap;
288 int result;
289 va_start(ap, fmt);
290 result = fsck_vreport(options, report, msg_id, fmt, ap);
291 va_end(ap);
292 return result;
293}
294
295void fsck_enable_object_names(struct fsck_options *options)
296{

Callers 13

refs_fsck_refFunction · 0.85
refs_fsck_symrefFunction · 0.85
packed_fsck_ref_headerFunction · 0.85
packed_fsck_ref_sortedFunction · 0.85
packed_fsckFunction · 0.85
files_fsck_symref_targetFunction · 0.85
files_fsck_refs_contentFunction · 0.85
files_fsck_refs_nameFunction · 0.85

Calls 1

fsck_vreportFunction · 0.85

Tested by

no test coverage detected