From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48103) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bmjp6-0004q8-EV for qemu-devel@nongnu.org; Wed, 21 Sep 2016 11:52:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bmjp1-0005aI-Ka for qemu-devel@nongnu.org; Wed, 21 Sep 2016 11:52:36 -0400 Received: from mx1.redhat.com ([209.132.183.28]:59798) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bmjp1-0005Z5-Eu for qemu-devel@nongnu.org; Wed, 21 Sep 2016 11:52:31 -0400 From: Stefan Hajnoczi Date: Wed, 21 Sep 2016 16:52:18 +0100 Message-Id: <1474473146-19337-2-git-send-email-stefanha@redhat.com> In-Reply-To: <1474473146-19337-1-git-send-email-stefanha@redhat.com> References: <1474473146-19337-1-git-send-email-stefanha@redhat.com> Subject: [Qemu-devel] [PATCH v5 1/9] virtio: fix stray tab character List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: "Michael S. Tsirkin" , Cornelia Huck , Fam Zheng , Stefan Hajnoczi Fix a single occurrence of a tab character in a file that otherwise uses spaces for indentation. Signed-off-by: Stefan Hajnoczi Reviewed-by: Fam Zheng Acked-by: Cornelia Huck --- v3: * Fix typo and clarify commit description [Markus] --- 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 bb656b1..1199149 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) -- 2.7.4