aboutsummaryrefslogtreecommitdiffstats
path: root/migration-tcp.c
diff options
context:
space:
mode:
authormalc <av1474@comtv.ru>2009-05-21 05:26:23 +0400
committermalc <av1474@comtv.ru>2009-05-21 05:30:51 +0400
commit0a656f5f21553b9b69392d89e28d18361a0e3405 (patch)
tree4b0474b563efb39f9c131885e6cdc1bae3516601 /migration-tcp.c
parent9f8fd69460b30bc3817deabd1d76455248b76da2 (diff)
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 <av1474@comtv.ru>
Diffstat (limited to 'migration-tcp.c')
-rw-r--r--migration-tcp.c2
1 files changed, 1 insertions, 1 deletions
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) {