diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-08-02 03:17:02 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-08-02 03:17:02 (GMT) |
commit | 7d5dd8af9b159fb2688ae5ca02905203165bd41e (patch) | |
tree | fac4dfed95c3935f0831cf7d9107f8afe57a5f33 /Modules | |
parent | 8dfcdda840287b554263f0edfd2268f1d2e434d7 (diff) | |
download | cpython-7d5dd8af9b159fb2688ae5ca02905203165bd41e.zip cpython-7d5dd8af9b159fb2688ae5ca02905203165bd41e.tar.gz cpython-7d5dd8af9b159fb2688ae5ca02905203165bd41e.tar.bz2 |
Merged revisions 65385 via svnmerge from
svn+ssh://pythondev@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
........
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_multiprocessing/pipe_connection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_multiprocessing/pipe_connection.c b/Modules/_multiprocessing/pipe_connection.c index d655c50..ad16fc8 100644 --- a/Modules/_multiprocessing/pipe_connection.c +++ b/Modules/_multiprocessing/pipe_connection.c @@ -68,7 +68,7 @@ conn_recv_string(ConnectionObject *conn, char *buffer, 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); |