From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57018) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yrn84-0002n5-LR for qemu-devel@nongnu.org; Mon, 11 May 2015 08:48:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Yrn80-0002Zf-Jh for qemu-devel@nongnu.org; Mon, 11 May 2015 08:48:16 -0400 Received: from mx1.redhat.com ([209.132.183.28]:34518) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yrn80-0002ZM-Dh for qemu-devel@nongnu.org; Mon, 11 May 2015 08:48:12 -0400 Date: Mon, 11 May 2015 14:47:58 +0200 From: "Michael S. Tsirkin" Message-ID: <1431329108-2605-16-git-send-email-mst@redhat.com> References: <1431329108-2605-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1431329108-2605-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PULL 15/28] virtio: coding style tweak List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Cornelia Huck , Peter Maydell , Gonglei , Thomas Huth no space needed after *. Signed-off-by: Michael S. Tsirkin --- include/hw/virtio/virtio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/hw/virtio/virtio.h b/include/hw/virtio/virtio.h index 9706c29..8210cb3 100644 --- a/include/hw/virtio/virtio.h +++ b/include/hw/virtio/virtio.h @@ -84,7 +84,7 @@ struct VirtIODevice VMChangeStateEntry *vmstate; char *bus_name; uint8_t device_endian; - QLIST_HEAD(, VirtQueue) * vector_queues; + QLIST_HEAD(, VirtQueue) *vector_queues; }; typedef struct VirtioDeviceClass { -- MST