diff options
author | Stefan Hajnoczi <stefanha@redhat.com> | 2016-09-21 16:52:18 +0100 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2016-09-23 19:03:55 +0300 |
commit | 8275e2f6be8b10c2b3da0fe6927d0ce7ad438c80 (patch) | |
tree | 6b4b24d2e8dd4016782f389774f1f3aa77c7a31c | |
parent | 152fcbecad3775ba8950060616b59f6c23bc97e8 (diff) | |
download | qemu-8275e2f6be8b10c2b3da0fe6927d0ce7ad438c80.zip |
virtio: fix stray tab character
Fix a single occurrence of a tab character in a file that otherwise uses
spaces for indentation.
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Fam Zheng <famz@redhat.com>
Acked-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Acked-by: Cornelia Huck <cornelia.huck@de.ibm.com>
-rw-r--r-- | hw/virtio/virtio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/virtio/virtio.c b/hw/virtio/virtio.c index bb656b1ccf..1199149a18 100644 --- a/hw/virtio/virtio.c +++ b/hw/virtio/virtio.c @@ -1613,7 +1613,7 @@ int virtio_load(VirtIODevice *vdev, QEMUFile *f, int version_id) "inconsistent with Host index 0x%x", i, vdev->vq[i].last_avail_idx); return -1; - } + } if (k->load_queue) { ret = k->load_queue(qbus->parent, i, f); if (ret) |