Commit 068daedd7dffcd065d3f238a6c04bb2cf51a9cd2

Authored by Anthony Liguori
1 parent f8e76fbf

Fix build breakage when using VDE introduced by 4f1c942b

Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Showing 1 changed file with 1 additions and 1 deletions
... ... @@ -1426,7 +1426,7 @@ static void vde_to_qemu(void *opaque)
1426 1426 static ssize_t vde_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
1427 1427 {
1428 1428 VDEState *s = vc->opaque;
1429   - ssize ret;
  1429 + ssize_t ret;
1430 1430  
1431 1431 do {
1432 1432 ret = vde_send(s->vde, (const char *)buf, size, 0);
... ...