]> granicus.if.org Git - python/commitdiff
fix compile error on Windows
authorBenjamin Peterson <benjamin@python.org>
Sat, 2 Aug 2008 03:11:16 +0000 (03:11 +0000)
committerBenjamin Peterson <benjamin@python.org>
Sat, 2 Aug 2008 03:11:16 +0000 (03:11 +0000)
Modules/_multiprocessing/pipe_connection.c

index d655c50aa49619e4a3a4e4ab6f8508e474499aae..ad16fc89d31ec30a2f269656790de158d209b676 100644 (file)
@@ -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);