Commit 60e8b78e authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

msxml: Always increase error count when detected.

The error count wasn't be increased if tracing was disabled. eg CI. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=55720
parent 9ad97f69
......@@ -40,6 +40,7 @@ static inline BOOL is_literal(xmlChar const* tok)
static void xslpattern_error(parser_param* param, void const* scanner, char const* msg)
{
param->err++;
FIXME("%s:\n"
" param {\n"
" yyscanner=%p\n"
......@@ -52,7 +53,7 @@ static void xslpattern_error(parser_param* param, void const* scanner, char cons
" }\n"
" scanner=%p\n",
msg, param->yyscanner, param->ctx, param->in, param->pos,
param->len, param->out, ++param->err, scanner);
param->len, param->out, param->err, scanner);
}
%}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment