[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-trivial] [PATCH] linux-user, trivial: display "0x%x" instead o
From: |
Riku Voipio |
Subject: |
Re: [Qemu-trivial] [PATCH] linux-user, trivial: display "0x%x" instead of "0x%d" |
Date: |
Tue, 21 Jun 2016 22:22:27 +0300 |
User-agent: |
Mutt/1.5.23 (2014-03-12) |
On Mon, Jun 20, 2016 at 11:51:32AM +0200, Laurent Vivier wrote:
> Display an exception number, generally defined as an hexadecimal
> number (for instance, EXCP_HLT is 0x10001).
Acked-by: Riku Voipio <address@hidden>
> Signed-off-by: Laurent Vivier <address@hidden>
> ---
> Resent to fix qemu-trivial email address.
>
> linux-user/main.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/linux-user/main.c b/linux-user/main.c
> index b9a4e0e..c79f5cb 100644
> --- a/linux-user/main.c
> +++ b/linux-user/main.c
> @@ -2036,7 +2036,7 @@ void cpu_loop(CPUPPCState *env)
> /* just indicate that signals should be handled asap */
> break;
> default:
> - cpu_abort(cs, "Unknown exception 0x%d. Aborting\n", trapnr);
> + cpu_abort(cs, "Unknown exception 0x%x. Aborting\n", trapnr);
> break;
> }
> process_pending_signals(env);
> --
> 2.5.5
>