From: Stefan Weil Date: Thu, 30 Sep 2010 20:39:51 +0000 (+0200) Subject: exec: Fix compilation error for debug code X-Git-Tag: v0.14.0-rc0~601 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=7fd3f494409775b491ca08f9026c45da13852a6d;p=qemu.git exec: Fix compilation error for debug code is_softmmu was removed with commit d4c430a80f000d722bb70287af4d4c184a8d7006, so remove it now from debug code, too. Fix also the format specifier for paddr in the same line of code. Cc: Blue Swirl Signed-off-by: Stefan Weil Signed-off-by: Blue Swirl --- diff --git a/exec.c b/exec.c index 9b5464ff2..1fbe91cf4 100644 --- a/exec.c +++ b/exec.c @@ -2173,8 +2173,9 @@ void tlb_set_page(CPUState *env, target_ulong vaddr, pd = p->phys_offset; } #if defined(DEBUG_TLB) - printf("tlb_set_page: vaddr=" TARGET_FMT_lx " paddr=0x%08x prot=%x idx=%d smmu=%d pd=0x%08lx\n", - vaddr, (int)paddr, prot, mmu_idx, is_softmmu, pd); + printf("tlb_set_page: vaddr=" TARGET_FMT_lx " paddr=0x" TARGET_FMT_plx + " prot=%x idx=%d pd=0x%08lx\n", + vaddr, paddr, prot, mmu_idx, pd); #endif address = vaddr;