mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
python: flag two unused args
This commit is contained in:
parent
dff8d0f726
commit
c31e06cc18
@ -1745,7 +1745,7 @@ typedef struct
|
|||||||
typedef xmlValidCtxtPyCtxt *xmlValidCtxtPyCtxtPtr;
|
typedef xmlValidCtxtPyCtxt *xmlValidCtxtPyCtxtPtr;
|
||||||
|
|
||||||
static void
|
static void
|
||||||
libxml_xmlValidCtxtGenericErrorFuncHandler(void *ctx, int severity, char *str)
|
libxml_xmlValidCtxtGenericErrorFuncHandler(void *ctx, ATTRIBUTE_UNUSED int severity, char *str)
|
||||||
{
|
{
|
||||||
PyObject *list;
|
PyObject *list;
|
||||||
PyObject *result;
|
PyObject *result;
|
||||||
@ -1772,7 +1772,7 @@ libxml_xmlValidCtxtGenericErrorFuncHandler(void *ctx, int severity, char *str)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
libxml_xmlValidCtxtGenericWarningFuncHandler(void *ctx, int severity, char *str)
|
libxml_xmlValidCtxtGenericWarningFuncHandler(void *ctx, ATTRIBUTE_UNUSED int severity, char *str)
|
||||||
{
|
{
|
||||||
PyObject *list;
|
PyObject *list;
|
||||||
PyObject *result;
|
PyObject *result;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user