mirror of https://github.com/python/cpython
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:
parent
9c3a392321
commit
d14ef77ae1
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue