qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 2/3] slirp: fix warning on mingw32
@ 2011-07-23 21:25 Blue Swirl
  2011-07-23 22:23 ` Anthony Liguori
  0 siblings, 1 reply; 5+ messages in thread
From: Blue Swirl @ 2011-07-23 21:25 UTC (permalink / raw)
  To: qemu-devel

[-- Attachment #1: Type: text/plain, Size: 894 bytes --]

Avoid this warning:
  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 *'

Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
---
 slirp/ip_icmp.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/slirp/ip_icmp.c b/slirp/ip_icmp.c
index 14a5312..a208648 100644
--- a/slirp/ip_icmp.c
+++ b/slirp/ip_icmp.c
@@ -415,7 +415,7 @@ void icmp_receive(struct socket *so)
     icp = mtod(m, struct icmp *);

     id = icp->icmp_id;
-    len = recv(so->s, icp, m->m_len, 0);
+    len = recv(so->s, (char *)icp, m->m_len, 0);
     icp->icmp_id = id;

     m->m_data -= hlen;
-- 
1.6.2.4

[-- Attachment #2: 0002-slirp-fix-warning-on-mingw32.patch --]
[-- Type: text/x-patch, Size: 1372 bytes --]

From 37628ecdfc668419a7724687249f2791e9241847 Mon Sep 17 00:00:00 2001
Message-Id: <37628ecdfc668419a7724687249f2791e9241847.1311456245.git.blauwirbel@gmail.com>
In-Reply-To: <8bcd08d1fe7c90869ea6659b6248ace6cf7b1f32.1311456245.git.blauwirbel@gmail.com>
References: <8bcd08d1fe7c90869ea6659b6248ace6cf7b1f32.1311456245.git.blauwirbel@gmail.com>
From: Blue Swirl <blauwirbel@gmail.com>
Date: Sat, 23 Jul 2011 20:04:29 +0000
Subject: [PATCH 2/3] slirp: fix warning on mingw32

Avoid this warning:
  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 *'

Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
---
 slirp/ip_icmp.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/slirp/ip_icmp.c b/slirp/ip_icmp.c
index 14a5312..a208648 100644
--- a/slirp/ip_icmp.c
+++ b/slirp/ip_icmp.c
@@ -415,7 +415,7 @@ void icmp_receive(struct socket *so)
     icp = mtod(m, struct icmp *);
 
     id = icp->icmp_id;
-    len = recv(so->s, icp, m->m_len, 0);
+    len = recv(so->s, (char *)icp, m->m_len, 0);
     icp->icmp_id = id;
 
     m->m_data -= hlen;
-- 
1.7.2.5


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-07-25  1:58 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-23 21:25 [Qemu-devel] [PATCH 2/3] slirp: fix warning on mingw32 Blue Swirl
2011-07-23 22:23 ` Anthony Liguori
2011-07-24  6:20   ` Stefan Weil
2011-07-24 17:21   ` Blue Swirl
2011-07-25  1:58     ` Anthony Liguori

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).