From: Brett Cannon Date: Fri, 12 Oct 2007 17:41:08 +0000 (+0000) Subject: Silence a compiler warning about a function definition not being a prototype. X-Git-Tag: v2.5.2c1~162 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8012e9c2f74538fff946762102c700249f573895;p=thirdparty%2FPython%2Fcpython.git Silence a compiler warning about a function definition not being a prototype. --- diff --git a/Modules/main.c b/Modules/main.c index 83d567fede1c..80c0c04c3102 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;