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