From: malc Date: Thu, 21 May 2009 01:26:23 +0000 (+0400) Subject: Cast pointer arguments of get/setsockopt, send to void * to keep GCC X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=0a656f5f21553b9b69392d89e28d18361a0e3405;p=qemu-xen-4.1-testing.git Cast pointer arguments of get/setsockopt, send to void * to keep GCC from producing a warning about pointer type mismatches with Winsock Signed-off-by: malc --- diff --git a/migration-tcp.c b/migration-tcp.c index d9c4c986d..1f4358ee5 100644 --- a/migration-tcp.c +++ b/migration-tcp.c @@ -58,7 +58,7 @@ static void tcp_wait_for_connect(void *opaque) dprintf("connect completed\n"); do { - ret = getsockopt(s->fd, SOL_SOCKET, SO_ERROR, &val, &valsize); + ret = getsockopt(s->fd, SOL_SOCKET, SO_ERROR, (void *) &val, &valsize); } while (ret == -1 && (s->get_error(s)) == EINTR); if (ret < 0) { diff --git a/nbd.c b/nbd.c index 1586ea755..b397a5f48 100644 --- a/nbd.c +++ b/nbd.c @@ -169,7 +169,8 @@ int tcp_socket_incoming(const char *address, uint16_t port) memcpy(&addr.sin_addr.s_addr, &in, sizeof(in)); opt = 1; - if (setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt)) == -1) { + if (setsockopt(s, SOL_SOCKET, SO_REUSEADDR, + (const void *) &opt, sizeof(opt)) == -1) { goto error; } diff --git a/slirp/slirp.c b/slirp/slirp.c index 4ca35b28f..04d3dede2 100644 --- a/slirp/slirp.c +++ b/slirp/slirp.c @@ -468,7 +468,7 @@ void slirp_select_poll(fd_set *readfds, fd_set *writefds, fd_set *xfds) /* Connected */ so->so_state &= ~SS_ISFCONNECTING; - ret = send(so->s, &ret, 0, 0); + ret = send(so->s, (const void *) &ret, 0, 0); if (ret < 0) { /* XXXXX Must fix, zero bytes is a NOP */ if (errno == EAGAIN || errno == EWOULDBLOCK ||