]> granicus.if.org Git - python/commitdiff
Add missing return type to dealloc.
authorGeorg Brandl <georg@python.org>
Sat, 26 Apr 2008 18:32:17 +0000 (18:32 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 26 Apr 2008 18:32:17 +0000 (18:32 +0000)
Modules/_ctypes/callbacks.c

index 0d3655e09375c427e357a5df6e44213edb0f27d2..09bcbc2a6638b517f9aca8248f353d535687c434 100644 (file)
@@ -14,7 +14,8 @@
 
 /**************************************************************/
 
-static CThunkObject_dealloc(PyObject *_self)
+static void
+CThunkObject_dealloc(PyObject *_self)
 {
        CThunkObject *self = (CThunkObject *)_self;
        Py_XDECREF(self->converters);