From a6b79f3b1134861445af1c900bec2ce5ba75948d Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 26 Apr 2008 18:32:17 +0000 Subject: Add missing return type to dealloc. --- Modules/_ctypes/callbacks.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Modules/_ctypes/callbacks.c b/Modules/_ctypes/callbacks.c index 0d3655e..09bcbc2 100644 --- a/Modules/_ctypes/callbacks.c +++ b/Modules/_ctypes/callbacks.c @@ -14,7 +14,8 @@ /**************************************************************/ -static CThunkObject_dealloc(PyObject *_self) +static void +CThunkObject_dealloc(PyObject *_self) { CThunkObject *self = (CThunkObject *)_self; Py_XDECREF(self->converters); -- cgit v0.12