ia64/xen-unstable
changeset 18133:f86941c1b523
ioemu: Fix hvmloader erroneous debugging prints
Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
author | Keir Fraser <keir.fraser@citrix.com> |
---|---|
date | Tue Jul 22 16:03:45 2008 +0100 (2008-07-22) |
parents | a47770d74b69 |
children | 1970781956c7 ba6be1571cc6 |
files | tools/ioemu/hw/pc.c |
line diff
1.1 --- a/tools/ioemu/hw/pc.c Tue Jul 22 15:57:19 2008 +0100 1.2 +++ b/tools/ioemu/hw/pc.c Tue Jul 22 16:03:45 2008 +0100 1.3 @@ -591,9 +591,9 @@ static void load_linux(const char *kerne 1.4 "qemu: real_addr = %#zx\n" 1.5 "qemu: cmdline_addr = %#zx\n" 1.6 "qemu: prot_addr = %#zx\n", 1.7 - real_addr, 1.8 - cmdline_addr, 1.9 - prot_addr); 1.10 + (size_t)real_addr, 1.11 + (size_t)cmdline_addr, 1.12 + (size_t)prot_addr); 1.13 1.14 /* highest address for loading the initrd */ 1.15 if (protocol >= 0x203)