1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-10-21 14:53:44 +03:00

error: Remove underscores from xmlRaiseError

This commit is contained in:
Nick Wellnhofer
2024-06-26 01:18:55 +02:00
parent 3ff8a2c4b8
commit 598ee0d2c6
12 changed files with 88 additions and 88 deletions

View File

@@ -385,10 +385,10 @@ xmlRegexpErrCompile(xmlRegParserCtxtPtr ctxt, const char *extra)
ctxt->error = XML_REGEXP_COMPILE_ERROR;
}
res = __xmlRaiseError(NULL, NULL, NULL, NULL, NULL, XML_FROM_REGEXP,
XML_REGEXP_COMPILE_ERROR, XML_ERR_FATAL,
NULL, 0, extra, regexp, NULL, idx, 0,
"failed to compile: %s\n", extra);
res = xmlRaiseError(NULL, NULL, NULL, NULL, NULL, XML_FROM_REGEXP,
XML_REGEXP_COMPILE_ERROR, XML_ERR_FATAL,
NULL, 0, extra, regexp, NULL, idx, 0,
"failed to compile: %s\n", extra);
if (res < 0)
xmlRegexpErrMemory(ctxt);
}