[Python-3000-checkins] r64166 - python/branches/py3k/Modules/_gestalt.c

benjamin.peterson python-3000-checkins at python.org
Thu Jun 12 15:16:38 CEST 2008


Author: benjamin.peterson
Date: Thu Jun 12 15:16:38 2008
New Revision: 64166

Log:
fix compiler warning


Modified:
   python/branches/py3k/Modules/_gestalt.c

Modified: python/branches/py3k/Modules/_gestalt.c
==============================================================================
--- python/branches/py3k/Modules/_gestalt.c	(original)
+++ python/branches/py3k/Modules/_gestalt.c	Thu Jun 12 15:16:38 2008
@@ -77,7 +77,7 @@
 	NULL
 };
 
-void
+PyMODINIT_FUNC
 PyInit__gestalt(void)
 {
 	return PyModule_Create(&gestaltmodule);


More information about the Python-3000-checkins mailing list