diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2019-07-21 20:21:59 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2019-07-21 20:21:59 (GMT) |
commit | 6a8385724c74b07cf9ed4cb9052f1af1816e3ea5 (patch) | |
tree | a7bea8a4bb9c816da77cf5c3dd44fbd8fb89b3a7 /plugins/pychrysalide/arch | |
parent | f0682e7b195acbd4d83148f3829479d682f9ee9f (diff) |
Created more converters for Python arguments.
Diffstat (limited to 'plugins/pychrysalide/arch')
-rw-r--r-- | plugins/pychrysalide/arch/targetableop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/pychrysalide/arch/targetableop.c b/plugins/pychrysalide/arch/targetableop.c index 52d00e0..bc9e3af 100644 --- a/plugins/pychrysalide/arch/targetableop.c +++ b/plugins/pychrysalide/arch/targetableop.c @@ -75,7 +75,7 @@ static PyObject *py_targetable_operand_get_addr(PyObject *self, PyObject *args) vmpa2t addr; /* Localisation à cibler */ bool defined; /* Cible définie ? */ - ret = PyArg_ParseTuple(args, "O!", + ret = PyArg_ParseTuple(args, "O!O!O!", get_python_vmpa_type(), &src_obj, get_python_binary_format_type(), &format_obj, get_python_arch_processor_type(), &proc_obj); |