From 26e594a55a54d47ce0a0784c27c6f851c83d101a Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Wed, 30 Jan 2013 21:52:37 +0100 Subject: [PATCH 1/1] net: fix compile warning on Windows (and others) Signed-off-by: Jens Axboe --- engines/net.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/engines/net.c b/engines/net.c index b728df1f..d0f4fa0d 100644 --- a/engines/net.c +++ b/engines/net.c @@ -481,7 +481,7 @@ static int fio_netio_connect(struct thread_data *td, struct fio_file *f) if (o->nodelay && o->proto == FIO_TYPE_TCP) { optval = 1; - if (setsockopt(f->fd, IPPROTO_TCP, TCP_NODELAY, &optval, sizeof(int)) < 0) { + if (setsockopt(f->fd, IPPROTO_TCP, TCP_NODELAY, (void *) &optval, sizeof(int)) < 0) { log_err("fio: cannot set TCP_NODELAY option on socket (%s), disable with 'nodelay=0'\n", strerror(errno)); return 1; } @@ -541,7 +541,7 @@ static int fio_netio_accept(struct thread_data *td, struct fio_file *f) if (o->nodelay && o->proto == FIO_TYPE_TCP) { optval = 1; - if (setsockopt(f->fd, IPPROTO_TCP, TCP_NODELAY, &optval, sizeof(int)) < 0) { + if (setsockopt(f->fd, IPPROTO_TCP, TCP_NODELAY, (void *) &optval, sizeof(int)) < 0) { log_err("fio: cannot set TCP_NODELAY option on socket (%s), disable with 'nodelay=0'\n", strerror(errno)); return 1; } @@ -767,12 +767,12 @@ static int fio_netio_setup_listen_inet(struct thread_data *td, short port) } opt = 1; - if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (void*)&opt, sizeof(opt)) < 0) { + if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (void *) &opt, sizeof(opt)) < 0) { td_verror(td, errno, "setsockopt"); return 1; } #ifdef SO_REUSEPORT - if (setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &opt, sizeof(opt)) < 0) { + if (setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, (void *) &opt, sizeof(opt)) < 0) { td_verror(td, errno, "setsockopt"); return 1; } -- 2.25.1