summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/arch
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2020-01-03 22:51:31 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2020-01-03 22:51:31 (GMT)
commit8255d60ac64a851c2e7ca37d63aa1ba37d35b704 (patch)
tree06f1855dd7ead9da2acc0c595e3710faf503628f /plugins/pychrysalide/arch
parent90b8f66eb8ae62d951dfbd333fb338e38874c9fe (diff)
Used a Python enumeration for verbosity levels.
Diffstat (limited to 'plugins/pychrysalide/arch')
-rw-r--r--plugins/pychrysalide/arch/constants.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/pychrysalide/arch/constants.c b/plugins/pychrysalide/arch/constants.c
index 341cb63..241b009 100644
--- a/plugins/pychrysalide/arch/constants.c
+++ b/plugins/pychrysalide/arch/constants.c
@@ -60,8 +60,8 @@ bool define_arch_vmpa_constants(PyTypeObject *type)
goto exit;
}
- result = attach_constants_group(type, false, "VmpaSpecialValue", values,
- "Special values for memory locations.");
+ result = attach_constants_group_to_type(type, false, "VmpaSpecialValue", values,
+ "Special values for memory locations.");
exit: