* warningDebug: * @ctxt: An XML parser context * @msg: the message to display/transmit * @...: extra parameters for the message display * * Display and format a warning messages, gives file, line, position and * extra parameters. */
| 1125 | * extra parameters. |
| 1126 | */ |
| 1127 | static void |
| 1128 | warningDebug(void *ctx ATTRIBUTE_UNUSED, const char *msg, ...) |
| 1129 | { |
| 1130 | va_list args; |
| 1131 | |
| 1132 | callbacks++; |
| 1133 | if (quiet) |
| 1134 | return; |
| 1135 | va_start(args, msg); |
| 1136 | fprintf(SAXdebug, "SAX.warning: "); |
| 1137 | vfprintf(SAXdebug, msg, args); |
| 1138 | va_end(args); |
| 1139 | } |
| 1140 | |
| 1141 | /** |
| 1142 | * errorDebug: |
no test coverage detected