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

Function bug_fl

usage.c:365–378  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

363
364int bug_called_must_BUG;
365void bug_fl(const char *file, int line, const char *fmt, ...)
366{
367 va_list ap;
368
369 bug_called_must_BUG = 1;
370
371 va_start(ap, fmt);
372 BUG_vfl_common(file, line, fmt, ap);
373 va_end(ap);
374
375 va_start(ap, fmt);
376 trace2_cmd_error_va(fmt, ap);
377 va_end(ap);
378}
379
380
381NORETURN void you_still_use_that(const char *command_name, const char *hint)

Callers

nothing calls this directly

Calls 1

BUG_vfl_commonFunction · 0.85

Tested by

no test coverage detected