diff options
| author | Anthony Liguori <aliguori@us.ibm.com> | 2009-06-10 20:24:44 -0500 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-06-10 20:24:44 -0500 |
| commit | 068daedd7dffcd065d3f238a6c04bb2cf51a9cd2 (patch) | |
| tree | 45f67d9ede3938f1ccb60961eff4e0bdbe1b8b7f | |
| parent | f8e76fbf5190575c0f927fe3c5b0ec6934c6c3fc (diff) | |
| download | focaccia-qemu-068daedd7dffcd065d3f238a6c04bb2cf51a9cd2.tar.gz focaccia-qemu-068daedd7dffcd065d3f238a6c04bb2cf51a9cd2.zip | |
Fix build breakage when using VDE introduced by 4f1c942
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
| -rw-r--r-- | net.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net.c b/net.c index 4cf27be99c..039f78b0c7 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); |