aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2008-07-22 16:03:45 +0100
committerKeir Fraser <keir.fraser@citrix.com>2008-07-22 16:03:45 +0100
commitebb9d5bee5e01343530a50514452b62513bf0dbe (patch)
treee52708584cc1f1767b73377852df1c4864543b08
parent59ec6ab1b674da6f7ed326c0931ca11b84494fad (diff)
downloadxen-ebb9d5bee5e01343530a50514452b62513bf0dbe.tar.gz
xen-ebb9d5bee5e01343530a50514452b62513bf0dbe.tar.bz2
xen-ebb9d5bee5e01343530a50514452b62513bf0dbe.zip
ioemu: Fix hvmloader erroneous debugging prints
Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
-rw-r--r--tools/ioemu/hw/pc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/ioemu/hw/pc.c b/tools/ioemu/hw/pc.c
index fdffbbccf0..fc25a4224e 100644
--- a/tools/ioemu/hw/pc.c
+++ b/tools/ioemu/hw/pc.c
@@ -591,9 +591,9 @@ static void load_linux(const char *kernel_filename,
"qemu: real_addr = %#zx\n"
"qemu: cmdline_addr = %#zx\n"
"qemu: prot_addr = %#zx\n",
- real_addr,
- cmdline_addr,
- prot_addr);
+ (size_t)real_addr,
+ (size_t)cmdline_addr,
+ (size_t)prot_addr);
/* highest address for loading the initrd */
if (protocol >= 0x203)