commit | 068daedd7dffcd065d3f238a6c04bb2cf51a9cd2 | [log] [tgz] |
---|---|---|
author | Anthony Liguori <aliguori@us.ibm.com> | Wed Jun 10 20:24:44 2009 -0500 |
committer | Anthony Liguori <aliguori@us.ibm.com> | Wed Jun 10 20:24:44 2009 -0500 |
tree | 45f67d9ede3938f1ccb60961eff4e0bdbe1b8b7f | |
parent | f8e76fbf5190575c0f927fe3c5b0ec6934c6c3fc [diff] |
Fix build breakage when using VDE introduced by 4f1c942 Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
diff --git a/net.c b/net.c index 4cf27be..039f78b 100644 --- a/net.c +++ b/net.c
@@ -1426,7 +1426,7 @@ 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);