summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/analysis/types/cse.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/pychrysalide/analysis/types/cse.c')
-rw-r--r--plugins/pychrysalide/analysis/types/cse.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/plugins/pychrysalide/analysis/types/cse.c b/plugins/pychrysalide/analysis/types/cse.c
index 4643a8d..5f0bb0a 100644
--- a/plugins/pychrysalide/analysis/types/cse.c
+++ b/plugins/pychrysalide/analysis/types/cse.c
@@ -222,15 +222,15 @@ static bool py_class_enum_type_define_constants(PyTypeObject *obj_type)
result = true;
- result &= PyDict_AddIntMacro(obj_type, CET_UNKNOWN);
- result &= PyDict_AddIntMacro(obj_type, CET_STRUCT);
- result &= PyDict_AddIntMacro(obj_type, CET_ENUM);
- result &= PyDict_AddIntMacro(obj_type, CET_CLASS);
- result &= PyDict_AddIntMacro(obj_type, CET_NAMESPACE);
- result &= PyDict_AddIntMacro(obj_type, CET_VIRTUAL_TABLE);
- result &= PyDict_AddIntMacro(obj_type, CET_VIRTUAL_STRUCT);
-
- result &= PyDict_AddIntMacro(obj_type, CET_COUNT);
+ result &= PyDict_AddULongMacro(obj_type, CET_UNKNOWN);
+ result &= PyDict_AddULongMacro(obj_type, CET_STRUCT);
+ result &= PyDict_AddULongMacro(obj_type, CET_ENUM);
+ result &= PyDict_AddULongMacro(obj_type, CET_CLASS);
+ result &= PyDict_AddULongMacro(obj_type, CET_NAMESPACE);
+ result &= PyDict_AddULongMacro(obj_type, CET_VIRTUAL_TABLE);
+ result &= PyDict_AddULongMacro(obj_type, CET_VIRTUAL_STRUCT);
+
+ result &= PyDict_AddULongMacro(obj_type, CET_COUNT);
return result;