From d14ef77ae1d455369f12b3d483c36323663d2fa3 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Fri, 5 Jan 2007 21:45:09 +0000 Subject: 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. --- Modules/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v0.12