summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/common/leb128.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2021-02-21 13:26:27 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2021-02-21 13:26:27 (GMT)
commitdc3be188b42a90404d0655c250e6697f5a55b862 (patch)
tree7b9625b446caa35006a5517acaa18ec39c307097 /plugins/pychrysalide/common/leb128.c
parent9a080bc3f8184a5663ce42c3c74ae80e1ae598a0 (diff)
Delete intermediate Python modules for some API features.
Diffstat (limited to 'plugins/pychrysalide/common/leb128.c')
-rw-r--r--plugins/pychrysalide/common/leb128.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/pychrysalide/common/leb128.c b/plugins/pychrysalide/common/leb128.c
index 49ef533..8e1bf28 100644
--- a/plugins/pychrysalide/common/leb128.c
+++ b/plugins/pychrysalide/common/leb128.c
@@ -273,7 +273,7 @@ bool populate_common_module_with_leb128(void)
bool result; /* Bilan à retourner */
PyObject *module; /* Module à recompléter */
- static PyMethodDef py_queue_methods[] = {
+ static PyMethodDef py_leb128_methods[] = {
LEB128_PACK_ULEB128_METHOD,
LEB128_PACK_LEB128_METHOD,
LEB128_UNPACK_ULEB128_METHOD,
@@ -283,7 +283,7 @@ bool populate_common_module_with_leb128(void)
module = get_access_to_python_module("pychrysalide.common");
- result = register_python_module_methods(module, py_queue_methods);
+ result = register_python_module_methods(module, py_leb128_methods);
return result;