commit | d14ef77ae1d455369f12b3d483c36323663d2fa3 | [log] [tgz] |
---|---|---|
author | Brett Cannon <bcannon@gmail.com> | Fri Jan 05 21:45:09 2007 +0000 |
committer | Brett Cannon <bcannon@gmail.com> | Fri Jan 05 21:45:09 2007 +0000 |
tree | 896620390c4b43dead8ca1ead7a28b1db648cf1c | |
parent | 9c3a392321b615fcd1abe184ad5759808a7bc943 [diff] [blame] |
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.
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 @@ "threading" threads have completed. */ #include "abstract.h" static void -WaitForThreadShutdown() +WaitForThreadShutdown(void) { #ifdef WITH_THREAD PyObject *result;