Silence a warning from gcc 4.0.1 by specifying a function's parameter list is

'void' instead of just a set of empty parentheses.
This commit is contained in:
Brett Cannon 2007-01-05 21:45:09 +00:00
parent 9c3a392321
commit d14ef77ae1
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@ static int RunModule(char *module)
"threading" threads have completed. */
#include "abstract.h"
static void
WaitForThreadShutdown()
WaitForThreadShutdown(void)
{
#ifdef WITH_THREAD
PyObject *result;