From 128bcf4520254bc7f52ba186fa02cd1c279c7591 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 13 Nov 2000 19:45:45 +0000 Subject: [PATCH] Fix syntax error. Submitted by Bill Bumgarner. Apparently this is still in use, for Apple Mac OSX. --- Python/thread_cthread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/thread_cthread.h b/Python/thread_cthread.h index 07bd190d270..080505134dd 100644 --- a/Python/thread_cthread.h +++ b/Python/thread_cthread.h @@ -15,7 +15,7 @@ PyThread__init_thread(void) * Thread support. */ int -PyThread_start_new_thread(func, void (*func)(void *), void *arg) +PyThread_start_new_thread(void (*func)(void *), void *arg) { int success = 0; /* init not needed when SOLARIS_THREADS and */ /* C_THREADS implemented properly */