From: Roger Pau Monne Date: Thu, 27 Dec 2018 15:26:36 +0000 (+0100) Subject: x86/dom0: add missing flag to printf format for PVH X-Git-Tag: xen-pt-allocation-1.1-base~126 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=b61c9acdea80a47ada89f62127db8e5372bb5d72;p=people%2Fliuw%2Fxen.git x86/dom0: add missing flag to printf format for PVH No functional change. Signed-off-by: Roger Pau Monné Acked-by: Andrew Cooper --- diff --git a/xen/arch/x86/hvm/dom0_build.c b/xen/arch/x86/hvm/dom0_build.c index 24cc15f28b..c0eb9cb953 100644 --- a/xen/arch/x86/hvm/dom0_build.c +++ b/xen/arch/x86/hvm/dom0_build.c @@ -124,7 +124,7 @@ static int __init pvh_populate_memory_range(struct domain *d, order); if ( rc != 0 ) { - printk("Failed to populate memory: [%#lx,%lx): %d\n", + printk("Failed to populate memory: [%#lx,%#lx): %d\n", start, start + (1UL << order), rc); return -ENOMEM; }