summaryrefslogtreecommitdiff
path: root/sys/src/cmd/python
diff options
context:
space:
mode:
authormischief <mischief@offblast.org>2018-12-02 03:30:30 -0800
committermischief <mischief@offblast.org>2018-12-02 03:30:30 -0800
commita847d7a53d64b1f7d11eb3b969c2684ea0aa399b (patch)
treeed22de776584fc513980e9337f24c4f4828b643f /sys/src/cmd/python
parentcb7375dcbcd80183fb206fa41b398dc71a039632 (diff)
python: explicitly declare WaitForThreadShutdown as void
Diffstat (limited to 'sys/src/cmd/python')
-rw-r--r--sys/src/cmd/python/Modules/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/python/Modules/main.c b/sys/src/cmd/python/Modules/main.c
index 83d567fed..80c0c04c3 100644
--- a/sys/src/cmd/python/Modules/main.c
+++ b/sys/src/cmd/python/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;