[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] hw/arm/nseries: Display hexadecimal value with '0x' prefix
From: |
Peter Maydell |
Subject: |
Re: [PATCH] hw/arm/nseries: Display hexadecimal value with '0x' prefix |
Date: |
Tue, 27 Jul 2021 10:18:10 +0100 |
On Mon, 26 Jul 2021 at 16:09, Philippe Mathieu-Daudé <f4bug@amsat.org> wrote:
>
> 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;
> }
Applied to target-arm.next, thanks.
-- PMM