WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] [qemu-xen-unstable] passthrough: fix %lx compiler warnin

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] [qemu-xen-unstable] passthrough: fix %lx compiler warning
From: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx>
Date: Tue, 2 Jun 2009 10:46:09 -0700
Delivery-date: Thu, 11 Jun 2009 08:03:09 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
commit d84dc6e767d2ecdbfe6a70343a3b3ec5e668c019
Author: Ian Jackson <ian.jackson@xxxxxxxxxxxxx>
Date:   Fri May 29 15:42:23 2009 +0100

    passthrough: fix %lx compiler warning
    
    This patch removes the following warning for x86-32 by PRIx64.
    
    pass-through.c: In function 'pt_iomul_ioport_write':
    pass-through.c:1140: warning: format '%lx' expects type 'long unsigned 
int', but argument 9 has type 'uint64_t'
    pass-through.c: In function 'pt_iomul_ioport_read':
    pass-through.c:1166: warning: format '%lx' expects type 'long unsigned 
int', but argument 9 has type 'uint64_t'
    
    Signed-off-by: Isaku Yamahata <yamahata@xxxxxxxxxxxxx>
---
 hw/pass-through.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/hw/pass-through.c b/hw/pass-through.c
index 0960360..2af2a1c 100644
--- a/hw/pass-through.c
+++ b/hw/pass-through.c
@@ -1139,7 +1139,7 @@ static void pt_iomul_ioport_write(struct pt_dev 
*assigned_device,
     out.size = size;
     out.value = val;
     if ( ioctl(assigned_device->fd, PCI_IOMUL_OUT, &out) )
-        PT_LOG("error: %s: %s addr 0x%x size %d bar %d offset 0x%lx\n",
+        PT_LOG("error: %s: %s addr 0x%x size %d bar %d offset 0x%"PRIx64"\n",
                __func__, strerror(errno), addr, size, bar, offset);
 }
 
@@ -1165,7 +1165,7 @@ static uint32_t pt_iomul_ioport_read(struct pt_dev 
*assigned_device,
     in.size = size;
     if ( ioctl(assigned_device->fd, PCI_IOMUL_IN, &in) )
     {
-        PT_LOG("error: %s: %s addr 0x%x size %d bar %d offset 0x%lx\n",
+        PT_LOG("error: %s: %s addr 0x%x size %d bar %d offset 0x%"PRIx64"\n",
                __func__, strerror(errno), addr, size, bar, offset);
         in.value = -1;
     }
--
generated by git-patchbot for /home/xen/git/qemu-xen-unstable.git

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] [qemu-xen-unstable] passthrough: fix %lx compiler warning, Ian Jackson <=