diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2019-01-25 22:13:27 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2019-01-25 22:13:27 (GMT) |
commit | ae3725eae3c1f2008e6f26b1057d97a6b9050a3c (patch) | |
tree | ae879f8dd7f0604ca26a13a704183e613716e16f /plugins/pychrysalide/arch/operands | |
parent | 7370350b82305afe200c34ed91027a55f543bf98 (diff) |
Provided API to subclass instructions and operands in Python.
Diffstat (limited to 'plugins/pychrysalide/arch/operands')
-rw-r--r-- | plugins/pychrysalide/arch/operands/register.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/pychrysalide/arch/operands/register.c b/plugins/pychrysalide/arch/operands/register.c index 8144af0..3e77c9b 100644 --- a/plugins/pychrysalide/arch/operands/register.c +++ b/plugins/pychrysalide/arch/operands/register.c @@ -50,7 +50,7 @@ static PyObject *py_register_operand_new(PyTypeObject *, PyObject *, PyObject *) static void py_register_operand_init_gclass(GRegisterOperandClass *, gpointer); /* Initialise une instance sur la base du dérivé de GObject. */ -static int py_register_operand_init(PyObject *self, PyObject *args, PyObject *kwds); +static int py_register_operand_init(PyObject *, PyObject *, PyObject *); |