diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2011-07-23 20:04:29 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2011-07-25 14:38:56 +0000 |
commit | 00aa0040e8b8ec45a75be4e8926a84b82cc75838 (patch) | |
tree | 2bd4340f2a9e31edb18910eaef0ccf1f694bcacb /gdbstub.c | |
parent | aad04cd024f0c59f0b96f032cde2e24eb3abba6d (diff) | |
download | qemu-00aa0040e8b8ec45a75be4e8926a84b82cc75838.tar.gz qemu-00aa0040e8b8ec45a75be4e8926a84b82cc75838.tar.bz2 qemu-00aa0040e8b8ec45a75be4e8926a84b82cc75838.zip |
Wrap recv to avoid warnings
Avoid warnings like these by wrapping recv():
CC slirp/ip_icmp.o
/src/qemu/slirp/ip_icmp.c: In function 'icmp_receive':
/src/qemu/slirp/ip_icmp.c:418:5: error: passing argument 2 of 'recv' from incompatible pointer type [-Werror]
/usr/local/lib/gcc/i686-mingw32msvc/4.6.0/../../../../i686-mingw32msvc/include/winsock2.h:547:32: note: expected 'char *' but argument is of type 'struct icmp *'
Remove also casts used to avoid warnings.
Reviewed-by: Anthony Liguori <aliguori@us.ibm.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'gdbstub.c')
-rw-r--r-- | gdbstub.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -319,7 +319,7 @@ static int get_char(GDBState *s) int ret; for(;;) { - ret = recv(s->fd, &ch, 1, 0); + ret = qemu_recv(s->fd, &ch, 1, 0); if (ret < 0) { if (errno == ECONNRESET) s->fd = -1; |