Skip to content

Commit

Permalink
target-s390x: Fix debug output
Browse files Browse the repository at this point in the history
Commit 71e4708 (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 <afaerber@suse.de>
  • Loading branch information
afaerber committed Jan 27, 2013
1 parent 953ef48 commit 165c0f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion target-s390x/helper.c
Expand Up @@ -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;
Expand Down

0 comments on commit 165c0f1

Please sign in to comment.