diff options
Diffstat (limited to 'plugins/pychrysalide/arch')
-rw-r--r-- | plugins/pychrysalide/arch/vmpa.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/pychrysalide/arch/vmpa.c b/plugins/pychrysalide/arch/vmpa.c index 413d67b..41fb1ad 100644 --- a/plugins/pychrysalide/arch/vmpa.c +++ b/plugins/pychrysalide/arch/vmpa.c @@ -554,7 +554,8 @@ static bool py_vmpa_define_constants(PyTypeObject *obj_type) /* TODO : à bouger vers base ? */ result &= PyDict_AddIntMacro(obj_type, SRE_LITTLE); - result &= PyDict_AddIntMacro(obj_type, SRE_MIDDLE); + result &= PyDict_AddIntMacro(obj_type, SRE_LITTLE_WORD); + result &= PyDict_AddIntMacro(obj_type, SRE_BIG_WORD); result &= PyDict_AddIntMacro(obj_type, SRE_BIG); return result; |