Message ID | 1458842214-11450-2-git-send-email-stefanha@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Thu, 03/24 17:56, Stefan Hajnoczi wrote: > The patches fixes a single occurrence of a tab character that resulted > in mis-aligned indentation. > > Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> > --- > hw/virtio/virtio.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/hw/virtio/virtio.c b/hw/virtio/virtio.c > index 08275a9..de8a3b3 100644 > --- a/hw/virtio/virtio.c > +++ b/hw/virtio/virtio.c > @@ -1531,7 +1531,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) > -- > 2.5.5 > Reviewed-by: Fam Zheng <famz@redhat.com>
diff --git a/hw/virtio/virtio.c b/hw/virtio/virtio.c index 08275a9..de8a3b3 100644 --- a/hw/virtio/virtio.c +++ b/hw/virtio/virtio.c @@ -1531,7 +1531,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)
The patches fixes a single occurrence of a tab character that resulted in mis-aligned indentation. Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> --- hw/virtio/virtio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)