Discussion:
[Python-3000-checkins] r65390 - in python/branches/py3k: Modules/_multiprocessing/pipe_connection.c
benjamin.peterson
2008-08-02 03:17:02 UTC
Permalink
Author: benjamin.peterson
Date: Sat Aug 2 05:17:02 2008
New Revision: 65390

Log:
Merged revisions 65385 via svnmerge from
svn+ssh://pythondev at svn.python.org/python/trunk

........
r65385 | benjamin.peterson | 2008-08-01 22:11:16 -0500 (Fri, 01 Aug 2008) | 1 line

fix compile error on Windows
........


Modified:
python/branches/py3k/ (props changed)
python/branches/py3k/Modules/_multiprocessing/pipe_connection.c

Modified: python/branches/py3k/Modules/_multiprocessing/pipe_connection.c
==============================================================================
--- python/branches/py3k/Modules/_multiprocessing/pipe_connection.c (original)
+++ python/branches/py3k/Modules/_multiprocessing/pipe_connection.c Sat Aug 2 05:17:02 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);

Loading...