From: Stefan Hajnoczi Date: Wed, 28 Jun 2017 18:47:19 +0000 (+0100) Subject: libqos: fix typo in virtio.h QVirtQueue->used comment X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=afbccba608cec3e78c8eb31f6b7d2cd0c9908e05;p=qemu.git libqos: fix typo in virtio.h QVirtQueue->used comment Signed-off-by: Stefan Hajnoczi Reviewed-by: Michael S. Tsirkin Reviewed-by: Fam Zheng Tested-by: Eric Blake Tested-by: Kevin Wolf Message-id: 20170628184724.21378-2-stefanha@redhat.com Signed-off-by: Stefan Hajnoczi --- diff --git a/tests/libqos/virtio.h b/tests/libqos/virtio.h index 3397a080e9..829de5eb35 100644 --- a/tests/libqos/virtio.h +++ b/tests/libqos/virtio.h @@ -26,7 +26,7 @@ typedef struct QVirtioDevice { typedef struct QVirtQueue { uint64_t desc; /* This points to an array of struct vring_desc */ uint64_t avail; /* This points to a struct vring_avail */ - uint64_t used; /* This points to a struct vring_desc */ + uint64_t used; /* This points to a struct vring_used */ uint16_t index; uint32_t size; uint32_t free_head;