From: Greg Stein Date: Sat, 8 Jul 2000 00:46:19 +0000 (+0000) Subject: One of the new prototypes was missing the "void" args. X-Git-Tag: v2.0b1~1012 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a90b23c5712ea1a73fcfdac00e9ebbac2956a632;p=python One of the new prototypes was missing the "void" args. --- diff --git a/Include/object.h b/Include/object.h index d63ace17c3..0578eec604 100644 --- a/Include/object.h +++ b/Include/object.h @@ -556,7 +556,7 @@ times. } \ extern DL_IMPORT(void) _PyTrash_deposit_object(PyObject*); -extern DL_IMPORT(void) _PyTrash_destroy_chain(); +extern DL_IMPORT(void) _PyTrash_destroy_chain(void); extern DL_IMPORT(int) _PyTrash_delete_nesting; extern DL_IMPORT(PyObject *) _PyTrash_delete_later;