mirror of https://gitee.com/openkylin/qemu.git
target/ppc/mmu_hash64: Fix printing unsigned as signed int
We were printing an unsigned value as a signed value, fix this. Signed-off-by: Suraj Jitindar Singh <sjitindarsingh@gmail.com> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
b8b4576e09
commit
76134d48b3
|
@ -181,8 +181,8 @@ int ppc_store_slb(PowerPCCPU *cpu, target_ulong slot,
|
|||
slb->vsid = vsid;
|
||||
slb->sps = sps;
|
||||
|
||||
LOG_SLB("%s: %d " TARGET_FMT_lx " - " TARGET_FMT_lx " => %016" PRIx64
|
||||
" %016" PRIx64 "\n", __func__, slot, esid, vsid,
|
||||
LOG_SLB("%s: " TARGET_FMT_lu " " TARGET_FMT_lx " - " TARGET_FMT_lx
|
||||
" => %016" PRIx64 " %016" PRIx64 "\n", __func__, slot, esid, vsid,
|
||||
slb->esid, slb->vsid);
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Reference in New Issue