diff options
author | Georg Brandl <georg@python.org> | 2008-04-26 18:32:17 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-04-26 18:32:17 (GMT) |
commit | a6b79f3b1134861445af1c900bec2ce5ba75948d (patch) | |
tree | d7d5b57e78eb9651a9b90684d7098e3f5ff8a4ed /Modules | |
parent | 78b3ee8c7b8199708f974c569bb687f4acd0c305 (diff) | |
download | cpython-a6b79f3b1134861445af1c900bec2ce5ba75948d.zip cpython-a6b79f3b1134861445af1c900bec2ce5ba75948d.tar.gz cpython-a6b79f3b1134861445af1c900bec2ce5ba75948d.tar.bz2 |
Add missing return type to dealloc.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_ctypes/callbacks.c | 3 |
1 files changed, 2 insertions, 1 deletions
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); |