diff options
author | Brett Cannon <bcannon@gmail.com> | 2007-01-05 21:45:09 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2007-01-05 21:45:09 (GMT) |
commit | d14ef77ae1d455369f12b3d483c36323663d2fa3 (patch) | |
tree | 896620390c4b43dead8ca1ead7a28b1db648cf1c /Modules/main.c | |
parent | 9c3a392321b615fcd1abe184ad5759808a7bc943 (diff) | |
download | cpython-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.c | 2 |
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; |