1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

Windows: more readable oio_write signature

This commit is contained in:
Bert Belder 2011-05-08 05:20:30 +02:00
parent 5ae6dae696
commit 5035f6851b

View File

@ -867,7 +867,7 @@ int oio_connect(oio_req* req, struct sockaddr* addr) {
}
int oio_write(oio_req* req, oio_buf* bufs, int bufcnt) {
int oio_write(oio_req* req, oio_buf bufs[], int bufcnt) {
int result;
DWORD bytes;
oio_handle* handle = req->handle;