aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/x86/hvm/intercept.c
diff options
context:
space:
mode:
authorKeir Fraser <keir@xensource.com>2007-11-01 10:56:56 +0000
committerKeir Fraser <keir@xensource.com>2007-11-01 10:56:56 +0000
commit0636fd0cad5de32dfc2b1fff5e1010e5af2a82c1 (patch)
treec5532cd25c4eecd6dc92c503d057cb435a6240ee /xen/arch/x86/hvm/intercept.c
parentb1884a7244b249cd61e8df0fe3b63630d93ef2b9 (diff)
downloadxen-0636fd0cad5de32dfc2b1fff5e1010e5af2a82c1.tar.gz
xen-0636fd0cad5de32dfc2b1fff5e1010e5af2a82c1.tar.bz2
xen-0636fd0cad5de32dfc2b1fff5e1010e5af2a82c1.zip
x86/64: Fix the build.
Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'xen/arch/x86/hvm/intercept.c')
-rw-r--r--xen/arch/x86/hvm/intercept.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xen/arch/x86/hvm/intercept.c b/xen/arch/x86/hvm/intercept.c
index 8ffb26460a..dc2b1ffbba 100644
--- a/xen/arch/x86/hvm/intercept.c
+++ b/xen/arch/x86/hvm/intercept.c
@@ -166,8 +166,8 @@ int hvm_buffered_io_send(ioreq_t *p)
/* Return 0 for the cases we can't deal with. */
if ( (p->addr > 0xffffful) || p->data_is_ptr || p->df || (p->count != 1) )
{
- gdprintk(XENLOG_DEBUG, "slow ioreq. type:%d size:%ld addr:0x%08lx "
- "dir:%d ptr:%d df:%d count:%ld\n",
+ gdprintk(XENLOG_DEBUG, "slow ioreq. type:%d size:%"PRIu64" addr:0x%"
+ PRIx64" dir:%d ptr:%d df:%d count:%"PRIu64"\n",
p->type, p->size, p->addr, !!p->dir,
!!p->data_is_ptr, !!p->df, p->count);
return 0;