From: Keir Fraser Date: Thu, 1 Nov 2007 10:56:56 +0000 (+0000) Subject: x86/64: Fix the build. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~14824^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=0636fd0cad5de32dfc2b1fff5e1010e5af2a82c1;p=xen.git x86/64: Fix the build. Signed-off-by: Keir Fraser --- 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;