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

Function BUG_vfl_common

usage.c:323–332  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

321int BUG_exit_code;
322
323static void BUG_vfl_common(const char *file, int line, const char *fmt,
324 va_list params)
325{
326 char prefix[256];
327
328 /* truncation via snprintf is OK here */
329 snprintf(prefix, sizeof(prefix), "BUG: %s:%d: ", file, line);
330
331 vreportf(prefix, fmt, params);
332}
333
334static NORETURN void BUG_vfl(const char *file, int line, const char *fmt, va_list params)
335{

Callers 2

BUG_vflFunction · 0.85
bug_flFunction · 0.85

Calls 1

vreportfFunction · 0.85

Tested by

no test coverage detected