From 8012e9c2f74538fff946762102c700249f573895 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Fri, 12 Oct 2007 17:41:08 +0000 Subject: [PATCH] Silence a compiler warning about a function definition not being a prototype. --- Modules/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/main.c b/Modules/main.c index 83d567fede1..80c0c04c310 100644 --- a/Modules/main.c +++ b/Modules/main.c @@ -182,7 +182,7 @@ static int RunModule(char *module) "threading" threads have completed. */ #include "abstract.h" static void -WaitForThreadShutdown() +WaitForThreadShutdown(void) { #ifdef WITH_THREAD PyObject *result;