From: Georg Brandl Date: Sat, 26 Apr 2008 18:32:17 +0000 (+0000) Subject: Add missing return type to dealloc. X-Git-Tag: v2.6a3~96 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a6b79f3b1134861445af1c900bec2ce5ba75948d;p=python Add missing return type to dealloc. --- diff --git a/Modules/_ctypes/callbacks.c b/Modules/_ctypes/callbacks.c index 0d3655e093..09bcbc2a66 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);