mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Add missing return type to dealloc.
This commit is contained in:
parent
78b3ee8c7b
commit
a6b79f3b11
1 changed files with 2 additions and 1 deletions
|
@ -14,7 +14,8 @@
|
|||
|
||||
/**************************************************************/
|
||||
|
||||
static CThunkObject_dealloc(PyObject *_self)
|
||||
static void
|
||||
CThunkObject_dealloc(PyObject *_self)
|
||||
{
|
||||
CThunkObject *self = (CThunkObject *)_self;
|
||||
Py_XDECREF(self->converters);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue