From: Alex Williamson Date: Wed, 17 Oct 2012 17:20:11 +0000 (-0600) Subject: vfio-pci: Fix debug build X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=a011b10e0c385c58469e654595801a592fb4137a;p=qmiga%2Fqemu.git vfio-pci: Fix debug build Stray variable from before MSI-X rework Signed-off-by: Alex Williamson --- diff --git a/hw/vfio_pci.c b/hw/vfio_pci.c index 639371e7a2..0619af4854 100644 --- a/hw/vfio_pci.c +++ b/hw/vfio_pci.c @@ -639,9 +639,8 @@ static void vfio_disable_msix(VFIODevice *vdev) vfio_disable_msi_common(vdev); - DPRINTF("%s(%04x:%02x:%02x.%x, msi%s)\n", __func__, - vdev->host.domain, vdev->host.bus, vdev->host.slot, - vdev->host.function, msix ? "x" : ""); + DPRINTF("%s(%04x:%02x:%02x.%x)\n", __func__, vdev->host.domain, + vdev->host.bus, vdev->host.slot, vdev->host.function); } static void vfio_disable_msi(VFIODevice *vdev)