From: Andreas Färber Date: Sun, 27 Jan 2013 03:32:03 +0000 (+0000) Subject: target-s390x: Fix debug output X-Git-Tag: v1.4.0-rc0~50^2~2 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=07cc7d128111958e1079632129b1633cb2a435ec;p=qemu.git target-s390x: Fix debug output Commit 71e470886fb6092504503a5fe41092ace71c096c (target-s390x: fix style) renamed the cpu_s390x_handle_mmu_fault() argument from _vaddr to orig_vaddr. Update the debug output code. Signed-off-by: Andreas Färber Signed-off-by: Alexander Graf --- diff --git a/target-s390x/helper.c b/target-s390x/helper.c index d693a10be..e62c93e03 100644 --- a/target-s390x/helper.c +++ b/target-s390x/helper.c @@ -387,7 +387,7 @@ int cpu_s390x_handle_mmu_fault(CPUS390XState *env, target_ulong orig_vaddr, int prot; DPRINTF("%s: address 0x%" PRIx64 " rw %d mmu_idx %d\n", - __func__, _vaddr, rw, mmu_idx); + __func__, orig_vaddr, rw, mmu_idx); orig_vaddr &= TARGET_PAGE_MASK; vaddr = orig_vaddr;