| 67 | } |
| 68 | |
| 69 | static void die_message_builtin(const char *err, va_list params) |
| 70 | { |
| 71 | if (!err) |
| 72 | return; |
| 73 | trace2_cmd_error_va(err, params); |
| 74 | vreportf(_("fatal: "), err, params); |
| 75 | } |
| 76 | |
| 77 | /* |
| 78 | * We call trace2_cmd_error_va() in the below functions first and |
nothing calls this directly
no test coverage detected