From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:39138) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Turx2-0006XI-K1 for qemu-devel@nongnu.org; Mon, 14 Jan 2013 16:52:18 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Turx1-0002Eg-Mn for qemu-devel@nongnu.org; Mon, 14 Jan 2013 16:52:16 -0500 Received: from greensocs.com ([87.106.252.221]:60294 helo=s15328186.onlinehome-server.info) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Turx1-0002EU-GU for qemu-devel@nongnu.org; Mon, 14 Jan 2013 16:52:15 -0500 From: fred.konrad@greensocs.com Date: Mon, 14 Jan 2013 22:52:02 +0100 Message-Id: <1358200322-9660-1-git-send-email-fred.konrad@greensocs.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH] virtio-9p: fix compilation error. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: aliguori@us.ibm.com, mst@redhat.com Cc: qemu-devel@nongnu.org, fred.konrad@greensocs.com From: KONRAD Frederic Fix the compilation error introduced by msg new field. CC hw/9pfs/virtio-9p.o In file included from /home/konradf/Documents/safe/greensocs/virtio-proje= ct/x86-qemu/qemu/hw/9pfs/virtio-9p.c:17:0: /home/konradf/Documents/safe/greensocs/virtio-project/x86-qemu/qemu/hw/vi= rtio-pci.h:30:16: erreur: field =E2=80=98msg=E2=80=99 has incomplete type make: *** [hw/9pfs/virtio-9p.o] Erreur 1 Signed-off-by: KONRAD Frederic --- hw/virtio-pci.h | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/virtio-pci.h b/hw/virtio-pci.h index 9ff3139..917b465 100644 --- a/hw/virtio-pci.h +++ b/hw/virtio-pci.h @@ -15,6 +15,7 @@ #ifndef QEMU_VIRTIO_PCI_H #define QEMU_VIRTIO_PCI_H =20 +#include "hw/pci/msi.h" #include "virtio-blk.h" #include "virtio-net.h" #include "virtio-rng.h" --=20 1.7.11.7