Skip to content

Commit dc16c9d

Browse files
author
georg.brandl
committed
Add missing return type to dealloc.
git-svn-id: http://svn.python.org/projects/python/trunk@62514 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent 8fa22db commit dc16c9d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Modules/_ctypes/callbacks.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414

1515
/**************************************************************/
1616

17-
static CThunkObject_dealloc(PyObject *_self)
17+
static void
18+
CThunkObject_dealloc(PyObject *_self)
1819
{
1920
CThunkObject *self = (CThunkObject *)_self;
2021
Py_XDECREF(self->converters);

0 commit comments

Comments
 (0)