Commit e12944dd authored by Brett Cannon's avatar Brett Cannon

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.
parent 04129fb0
...@@ -183,7 +183,7 @@ static int RunModule(char *module) ...@@ -183,7 +183,7 @@ static int RunModule(char *module)
"threading" threads have completed. */ "threading" threads have completed. */
#include "abstract.h" #include "abstract.h"
static void static void
WaitForThreadShutdown() WaitForThreadShutdown(void)
{ {
#ifdef WITH_THREAD #ifdef WITH_THREAD
PyObject *result; PyObject *result;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment