[Python-checkins] r65385 - python/trunk/Modules/_multiprocessing/pipe_connection.c

benjamin.peterson python-checkins at python.org
Sat Aug 2 05:11:16 CEST 2008


Author: benjamin.peterson
Date: Sat Aug  2 05:11:16 2008
New Revision: 65385

Log:
fix compile error on Windows

Modified:
   python/trunk/Modules/_multiprocessing/pipe_connection.c

Modified: python/trunk/Modules/_multiprocessing/pipe_connection.c
==============================================================================
--- python/trunk/Modules/_multiprocessing/pipe_connection.c	(original)
+++ python/trunk/Modules/_multiprocessing/pipe_connection.c	Sat Aug  2 05:11:16 2008
@@ -68,7 +68,7 @@
 	memcpy(*newbuffer, buffer, length);
 
 	Py_BEGIN_ALLOW_THREADS
-	ret = ReadFile(conn->handle, *newbuffer+length, left, &length, NULL)
+	ret = ReadFile(conn->handle, *newbuffer+length, left, &length, NULL);
 	Py_END_ALLOW_THREADS
 	if (ret) {
 		assert(length == left);


More information about the Python-checkins mailing list