diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2021-07-26 17:09:53 +0200 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2021-07-27 10:57:40 +0100 |
commit | b1c2a6bd3d035a60bc7c6cbc109996af8cfe2b05 (patch) | |
tree | 6b89176abe2601f0f4f687ea9eb359c32eebe301 /hw/arm/nseries.c | |
parent | b3d52804c591b478ec0620253c2bd71e4ff87bb9 (diff) | |
download | qemu-b1c2a6bd3d035a60bc7c6cbc109996af8cfe2b05.zip qemu-b1c2a6bd3d035a60bc7c6cbc109996af8cfe2b05.tar.gz qemu-b1c2a6bd3d035a60bc7c6cbc109996af8cfe2b05.tar.bz2 |
hw/arm/nseries: Display hexadecimal value with '0x' prefix
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20210726150953.1218690-1-f4bug@amsat.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/arm/nseries.c')
-rw-r--r-- | hw/arm/nseries.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/arm/nseries.c b/hw/arm/nseries.c index 906c915..af3164c 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; } |