From: Anthony Liguori Date: Thu, 11 Jun 2009 01:24:44 +0000 (-0500) Subject: Fix build breakage when using VDE introduced by 4f1c942 X-Git-Tag: v0.11.0-rc0~432 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=068daedd7dffcd065d3f238a6c04bb2cf51a9cd2;p=thirdparty%2Fqemu.git Fix build breakage when using VDE introduced by 4f1c942 Signed-off-by: Anthony Liguori --- diff --git a/net.c b/net.c index 4cf27be99c8..039f78b0c71 100644 --- a/net.c +++ b/net.c @@ -1426,7 +1426,7 @@ static void vde_to_qemu(void *opaque) static ssize_t vde_receive(VLANClientState *vc, const uint8_t *buf, size_t size) { VDEState *s = vc->opaque; - ssize ret; + ssize_t ret; do { ret = vde_send(s->vde, (const char *)buf, size, 0);