[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] hw/arm/nseries: Display hexadecimal value with '0x' prefix
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH] hw/arm/nseries: Display hexadecimal value with '0x' prefix |
Date: |
Mon, 26 Jul 2021 17:09:53 +0200 |
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
hw/arm/nseries.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hw/arm/nseries.c b/hw/arm/nseries.c
index 906c915df78..af3164c5519 100644
--- a/hw/arm/nseries.c
+++ b/hw/arm/nseries.c
@@ -692,7 +692,7 @@ static uint32_t mipid_txrx(void *opaque, uint32_t cmd, int
len)
default:
bad_cmd:
qemu_log_mask(LOG_GUEST_ERROR,
- "%s: unknown command %02x\n", __func__, s->cmd);
+ "%s: unknown command 0x%02x\n", __func__, s->cmd);
break;
}
--
2.31.1
- [PATCH] hw/arm/nseries: Display hexadecimal value with '0x' prefix,
Philippe Mathieu-Daudé <=