From: Guido van Rossum Date: Mon, 13 Nov 2000 19:45:45 +0000 (+0000) Subject: Fix syntax error. Submitted by Bill Bumgarner. Apparently this is X-Git-Tag: v2.1a1~742 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=128bcf4520254bc7f52ba186fa02cd1c279c7591;p=thirdparty%2FPython%2Fcpython.git Fix syntax error. Submitted by Bill Bumgarner. Apparently this is still in use, for Apple Mac OSX. --- diff --git a/Python/thread_cthread.h b/Python/thread_cthread.h index 07bd190d2700..080505134dde 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 */