(Found by grepping for broken PRI users.)
Signed-off-by: Andrew Jones <[email protected]>
---
hw/dma/xilinx_axidma.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/hw/dma/xilinx_axidma.c b/hw/dma/xilinx_axidma.c
index b1cfa11356a26..2ab0772cd19ae 100644
--- a/hw/dma/xilinx_axidma.c
+++ b/hw/dma/xilinx_axidma.c
@@ -180,10 +180,10 @@ static inline int streamid_from_addr(hwaddr addr)
#ifdef DEBUG_ENET
static void stream_desc_show(struct SDesc *d)
{
- qemu_log("buffer_addr = " PRIx64 "\n", d->buffer_address);
- qemu_log("nxtdesc = " PRIx64 "\n", d->nxtdesc);
- qemu_log("control = %x\n", d->control);
- qemu_log("status = %x\n", d->status);
+ qemu_log("buffer_addr = 0x%" PRIx64 "\n", d->buffer_address);
+ qemu_log("nxtdesc = 0x%" PRIx64 "\n", d->nxtdesc);
+ qemu_log("control = 0x%x\n", d->control);
+ qemu_log("status = 0x%x\n", d->status);
}
#endif
--
2.4.3