mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
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>
This commit is contained in:
parent
aad04cd024
commit
00aa0040e8
13 changed files with 21 additions and 15 deletions
|
@ -1860,7 +1860,7 @@ static void udp_chr_read(void *opaque)
|
|||
|
||||
if (s->max_size == 0)
|
||||
return;
|
||||
s->bufcnt = recv(s->fd, (void *)s->buf, sizeof(s->buf), 0);
|
||||
s->bufcnt = qemu_recv(s->fd, s->buf, sizeof(s->buf), 0);
|
||||
s->bufptr = s->bufcnt;
|
||||
if (s->bufcnt <= 0)
|
||||
return;
|
||||
|
@ -2078,7 +2078,7 @@ static ssize_t tcp_chr_recv(CharDriverState *chr, char *buf, size_t len)
|
|||
static ssize_t tcp_chr_recv(CharDriverState *chr, char *buf, size_t len)
|
||||
{
|
||||
TCPCharDriver *s = chr->opaque;
|
||||
return recv(s->fd, buf, len, 0);
|
||||
return qemu_recv(s->fd, buf, len, 0);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue