Dropped bogus return in void function

This commit is contained in:
Daniele Varrazzo 2013-04-05 01:03:05 +01:00
parent e14440d96d
commit 1a93279fe7

View File

@ -116,7 +116,7 @@ error_dealloc(errorObject *self)
PyMem_Free(self->codec);
CLEARPGRES(self->pgres);
return Py_TYPE(self)->tp_free((PyObject *)self);
Py_TYPE(self)->tp_free((PyObject *)self);
}