* xmlParserValidityWarning: * @ctx: an XML parser context * @msg: the message to display/transmit * @...: extra parameters for the message display * * Display and format a validity warning messages, gives file, line, * position and extra parameters. */
| 894 | * position and extra parameters. |
| 895 | */ |
| 896 | void |
| 897 | xmlParserValidityWarning(void *ctx, const char *msg ATTRIBUTE_UNUSED, ...) |
| 898 | { |
| 899 | va_list ap; |
| 900 | |
| 901 | va_start(ap, msg); |
| 902 | xmlVFormatLegacyError(ctx, "validity warning", msg, ap); |
| 903 | va_end(ap); |
| 904 | } |
| 905 | |
| 906 | |
| 907 | /************************************************************************ |
nothing calls this directly
no test coverage detected