]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix syntax error. Submitted by Bill Bumgarner. Apparently this is
authorGuido van Rossum <guido@python.org>
Mon, 13 Nov 2000 19:45:45 +0000 (19:45 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 13 Nov 2000 19:45:45 +0000 (19:45 +0000)
still in use, for Apple Mac OSX.

Python/thread_cthread.h

index 07bd190d2700ffaa1552a290ef1d244d881b8723..080505134dde6115d4530fe4d9cab4b85d893a40 100644 (file)
@@ -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 */