summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/arch/vmpa.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-12-13 21:53:43 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-12-13 21:53:43 (GMT)
commitccf90bf696a0852ef34ac2a86137b34e92827ec0 (patch)
treed43c65faf4316d8a55d67c74f363f3f4371068cd /plugins/pychrysalide/arch/vmpa.c
parent0c6e15aa59918b7d3a1e63258e3f6792266d62e0 (diff)
Renamed the function registering C constant values into Python objects.
Diffstat (limited to 'plugins/pychrysalide/arch/vmpa.c')
-rw-r--r--plugins/pychrysalide/arch/vmpa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/pychrysalide/arch/vmpa.c b/plugins/pychrysalide/arch/vmpa.c
index f2450bb..b89c3d7 100644
--- a/plugins/pychrysalide/arch/vmpa.c
+++ b/plugins/pychrysalide/arch/vmpa.c
@@ -535,8 +535,8 @@ static bool py_vmpa_define_constants(PyTypeObject *obj_type)
result = true;
- if (result) result = PyDict_AddIntMacro(obj_type, VMPA_NO_PHYSICAL);
- if (result) result = PyDict_AddIntMacro(obj_type, VMPA_NO_VIRTUAL);
+ if (result) result = PyDict_AddULongMacro(obj_type, VMPA_NO_PHYSICAL);
+ if (result) result = PyDict_AddULongMacro(obj_type, VMPA_NO_VIRTUAL);
return result;