diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-08-02 03:11:16 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-08-02 03:11:16 (GMT) |
commit | 8df0e4ffc384534be349c4fbb361e9e9a06a8d0b (patch) | |
tree | a1666a60f77c1d40c417ee89a1da90ab79848810 | |
parent | 80790287ab5e12df0ca03bcfdacb57b83c16d9ec (diff) | |
download | cpython-8df0e4ffc384534be349c4fbb361e9e9a06a8d0b.zip cpython-8df0e4ffc384534be349c4fbb361e9e9a06a8d0b.tar.gz cpython-8df0e4ffc384534be349c4fbb361e9e9a06a8d0b.tar.bz2 |
fix compile error on Windows
-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); |