From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:59189) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TOx42-0004cb-W8 for qemu-devel@nongnu.org; Thu, 18 Oct 2012 16:51:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TOx41-00086o-Mk for qemu-devel@nongnu.org; Thu, 18 Oct 2012 16:51:34 -0400 Received: from mx1.redhat.com ([209.132.183.28]:59848) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TOx41-00086O-F2 for qemu-devel@nongnu.org; Thu, 18 Oct 2012 16:51:33 -0400 From: Alex Williamson Date: Thu, 18 Oct 2012 14:51:30 -0600 Message-ID: <20121018205129.795.55041.stgit@bling.home> In-Reply-To: <20121018204600.795.11323.stgit@bling.home> References: <20121018204600.795.11323.stgit@bling.home> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH 1/2] vfio-pci: Fix debug build List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: anthony@codemonkey.ws, qemu-devel@nongnu.org Cc: alex.williamson@redhat.com, kvm@vger.kernel.org Stray variable from before MSI-X rework Signed-off-by: Alex Williamson --- hw/vfio_pci.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/hw/vfio_pci.c b/hw/vfio_pci.c index 639371e..0619af4 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)