summaryrefslogtreecommitdiffstats
path: root/Modules/main.c
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2007-01-05 21:45:09 (GMT)
committerBrett Cannon <bcannon@gmail.com>2007-01-05 21:45:09 (GMT)
commitd14ef77ae1d455369f12b3d483c36323663d2fa3 (patch)
tree896620390c4b43dead8ca1ead7a28b1db648cf1c /Modules/main.c
parent9c3a392321b615fcd1abe184ad5759808a7bc943 (diff)
downloadcpython-d14ef77ae1d455369f12b3d483c36323663d2fa3.zip
cpython-d14ef77ae1d455369f12b3d483c36323663d2fa3.tar.gz
cpython-d14ef77ae1d455369f12b3d483c36323663d2fa3.tar.bz2
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.
Diffstat (limited to 'Modules/main.c')
-rw-r--r--Modules/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/main.c b/Modules/main.c
index dc46d55..7594a76 100644
--- a/Modules/main.c
+++ b/Modules/main.c
@@ -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;