Skip to content
Snippets Groups Projects
Commit e0c6b9de authored by alexey.stratulat's avatar alexey.stratulat
Browse files

[*] Fix. Renamed declaration function

parent 4bbc01ce
No related branches found
No related tags found
1 merge request!26Support 3689
......@@ -62,7 +62,7 @@ typedef struct PyDapChainDatum{
}PyDapChainDatumObject;
//void PyDapChainDatumObject_dealloc(PyDapChainDatumObject* object);
PyObject *DapChainDatumObject_new(PyTypeObject *type_object, PyObject *args, PyObject *kwds);
PyObject *PyDapChainDatumObject_new(PyTypeObject *type_object, PyObject *args, PyObject *kwds);
static PyTypeObject DapChainDatumObject_DapChainDatumObjectType = {
PyVarObject_HEAD_INIT(NULL, 0)
......@@ -103,7 +103,7 @@ static PyTypeObject DapChainDatumObject_DapChainDatumObjectType = {
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
DapChainDatumObject_new, /* tp_new */
PyDapChainDatumObject_new, /* tp_new */
};
/* -------------------------------- */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment