[Python-checkins] r50790 - python/branches/release24-maint/Python/thread_os2.h

andrew.macintyre python-checkins at python.org
Sun Jul 23 16:29:03 CEST 2006


Author: andrew.macintyre
Date: Sun Jul 23 16:29:02 2006
New Revision: 50790

Modified:
   python/branches/release24-maint/Python/thread_os2.h
Log:
Complete backport of rev 50787 that was started in rev 50788


Modified: python/branches/release24-maint/Python/thread_os2.h
==============================================================================
--- python/branches/release24-maint/Python/thread_os2.h	(original)
+++ python/branches/release24-maint/Python/thread_os2.h	Sun Jul 23 16:29:02 2006
@@ -34,7 +34,7 @@
 {
 	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));


More information about the Python-checkins mailing list