[Python-checkins] r62514 - python/trunk/Modules/_ctypes/callbacks.c

georg.brandl python-checkins at python.org
Sat Apr 26 20:32:29 CEST 2008


Author: georg.brandl
Date: Sat Apr 26 20:32:17 2008
New Revision: 62514

Log:
Add missing return type to dealloc.


Modified:
   python/trunk/Modules/_ctypes/callbacks.c

Modified: python/trunk/Modules/_ctypes/callbacks.c
==============================================================================
--- python/trunk/Modules/_ctypes/callbacks.c	(original)
+++ python/trunk/Modules/_ctypes/callbacks.c	Sat Apr 26 20:32:17 2008
@@ -14,7 +14,8 @@
 
 /**************************************************************/
 
-static CThunkObject_dealloc(PyObject *_self)
+static void
+CThunkObject_dealloc(PyObject *_self)
 {
 	CThunkObject *self = (CThunkObject *)_self;
 	Py_XDECREF(self->converters);


More information about the Python-checkins mailing list