* xmlDebugErr: * @ctxt: a debug context * @error: the error code * * Handle a debug error. */
| 151 | * Handle a debug error. |
| 152 | */ |
| 153 | static void |
| 154 | xmlDebugErr(xmlDebugCtxtPtr ctxt, int error, const char *msg) |
| 155 | { |
| 156 | ctxt->errors++; |
| 157 | fprintf(ctxt->output, "ERROR %d: %s", error, msg); |
| 158 | } |
| 159 | static void LIBXML_ATTR_FORMAT(3,0) |
| 160 | xmlDebugErr2(xmlDebugCtxtPtr ctxt, int error, const char *msg, int extra) |
| 161 | { |
no test coverage detected