Add missing return type to dealloc.

This commit is contained in:
Georg Brandl 2008-04-26 18:32:17 +00:00
parent 78b3ee8c7b
commit a6b79f3b11

View file

@ -14,7 +14,8 @@
/**************************************************************/
static CThunkObject_dealloc(PyObject *_self)
static void
CThunkObject_dealloc(PyObject *_self)
{
CThunkObject *self = (CThunkObject *)_self;
Py_XDECREF(self->converters);