[Python-checkins] r58432 - python/branches/release25-maint/Modules/main.c

brett.cannon python-checkins at python.org
Fri Oct 12 19:41:08 CEST 2007


Author: brett.cannon
Date: Fri Oct 12 19:41:08 2007
New Revision: 58432

Modified:
   python/branches/release25-maint/Modules/main.c
Log:
Silence a compiler warning about a function definition not being a prototype.


Modified: python/branches/release25-maint/Modules/main.c
==============================================================================
--- python/branches/release25-maint/Modules/main.c	(original)
+++ python/branches/release25-maint/Modules/main.c	Fri Oct 12 19:41:08 2007
@@ -182,7 +182,7 @@
    "threading" threads have completed. */
 #include "abstract.h"
 static void
-WaitForThreadShutdown()
+WaitForThreadShutdown(void)
 {
 #ifdef WITH_THREAD
 	PyObject *result;


More information about the Python-checkins mailing list