diff options
Diffstat (limited to 'plugins/pychrysalide/format/constants.c')
| -rw-r--r-- | plugins/pychrysalide/format/constants.c | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/plugins/pychrysalide/format/constants.c b/plugins/pychrysalide/format/constants.c index ea2aedc..1561032 100644 --- a/plugins/pychrysalide/format/constants.c +++ b/plugins/pychrysalide/format/constants.c @@ -66,7 +66,8 @@ bool define_binary_symbol_constants(PyTypeObject *type)          goto exit;      } -    result = attach_constants_group(type, false, "SymbolType", values, "Available values for symbol types."); +    result = attach_constants_group_to_type(type, false, "SymbolType", values, +                                            "Available values for symbol types.");      values = PyDict_New(); @@ -81,7 +82,8 @@ bool define_binary_symbol_constants(PyTypeObject *type)          goto exit;      } -    result = attach_constants_group(type, false, "SymbolStatus", values, "Status of a symbol visibility."); +    result = attach_constants_group_to_type(type, false, "SymbolStatus", values, +                                            "Status of a symbol visibility.");   exit: | 
