Print BROKEN status: callback for dump_memleak. */
| 237 | #if DEVELOPER |
| 238 | /* Print BROKEN status: callback for dump_memleak. */ |
| 239 | void memleak_status_broken(const char *fmt, ...) |
| 240 | { |
| 241 | va_list ap; |
| 242 | va_start(ap, fmt); |
| 243 | status_vfmt(LOG_BROKEN, NULL, fmt, ap); |
| 244 | va_end(ap); |
| 245 | } |
| 246 | #endif |
nothing calls this directly
no test coverage detected