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:
@@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user