| 363 | |
| 364 | int bug_called_must_BUG; |
| 365 | void 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 | |
| 381 | NORETURN void you_still_use_that(const char *command_name, const char *hint) |
nothing calls this directly
no test coverage detected