Commit a6b79f3b authored by Georg Brandl's avatar Georg Brandl

Add missing return type to dealloc.

parent 78b3ee8c
...@@ -14,7 +14,8 @@ ...@@ -14,7 +14,8 @@
/**************************************************************/ /**************************************************************/
static CThunkObject_dealloc(PyObject *_self) static void
CThunkObject_dealloc(PyObject *_self)
{ {
CThunkObject *self = (CThunkObject *)_self; CThunkObject *self = (CThunkObject *)_self;
Py_XDECREF(self->converters); Py_XDECREF(self->converters);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment