From: Andrew MacIntyre Date: Sun, 23 Jul 2006 14:29:02 +0000 (+0000) Subject: Complete backport of rev 50787 that was started in rev 50788 X-Git-Tag: v2.4.4c1~155 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1fe0665fb6ef80a4233fbb6cb29bf1d49401fda5;p=thirdparty%2FPython%2Fcpython.git Complete backport of rev 50787 that was started in rev 50788 --- diff --git a/Python/thread_os2.h b/Python/thread_os2.h index c6fd23ee8931..074bdc1c600d 100644 --- a/Python/thread_os2.h +++ b/Python/thread_os2.h @@ -34,7 +34,7 @@ PyThread_start_new_thread(void (*func)(void *), void *arg) { int thread_id; - aThread = _beginthread(func, NULL, THREAD_STACK_SIZE, arg); + thread_id = _beginthread(func, NULL, THREAD_STACK_SIZE, arg); if (thread_id == -1) { dprintf(("_beginthread failed. return %ld\n", errno));