From f021fec73e81943918325c658d6b5594dcdff0d4 Mon Sep 17 00:00:00 2001 From: Cyrille Bagard Date: Thu, 15 Aug 2019 10:36:55 +0200 Subject: Cosmetics. --- plugins/pychrysalide/format/symbol.c | 12 ++++++------ 1 file 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; } -- cgit v0.11.2-87-g4458