diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2019-08-15 08:36:55 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2019-08-15 08:36:55 (GMT) |
commit | f021fec73e81943918325c658d6b5594dcdff0d4 (patch) | |
tree | 035481d838ea7227735e35d1ddd88e66c68cbc4f | |
parent | 18fe9a81c7531d22384e331a7ef78617c722de15 (diff) |
Cosmetics.
-rw-r--r-- | plugins/pychrysalide/format/symbol.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/pychrysalide/format/symbol.c b/plugins/pychrysalide/format/symbol.c index 7de534c..359ee45 100644 --- a/plugins/pychrysalide/format/symbol.c +++ b/plugins/pychrysalide/format/symbol.c @@ -644,11 +644,11 @@ static int py_binary_symbol_set_label(PyObject *self, PyObject *value, void *clo PyTypeObject *get_python_binary_symbol_type(void) { - static PyMethodDef py_bin_symbol_methods[] = { + static PyMethodDef binary_symbol_methods[] = { { NULL } }; - static PyGetSetDef py_bin_symbol_getseters[] = { + static PyGetSetDef binary_symbol_getseters[] = { BINARY_SYMBOL_RANGE_ATTRIB, BINARY_SYMBOL_STYPE_ATTRIB, BINARY_SYMBOL_STATUS_ATTRIB, @@ -656,7 +656,7 @@ PyTypeObject *get_python_binary_symbol_type(void) { NULL } }; - static PyTypeObject py_bin_symbol_type = { + static PyTypeObject binary_symbol_type = { PyVarObject_HEAD_INIT(NULL, 0) @@ -669,15 +669,15 @@ PyTypeObject *get_python_binary_symbol_type(void) .tp_richcompare = py_binary_symbol_richcompare, - .tp_methods = py_bin_symbol_methods, - .tp_getset = py_bin_symbol_getseters, + .tp_methods = binary_symbol_methods, + .tp_getset = binary_symbol_getseters, .tp_init = py_binary_symbol_init, .tp_new = py_binary_symbol_new }; - return &py_bin_symbol_type; + return &binary_symbol_type; } |