From: Laurent Vivier <[email protected]> Display an exception number, generally defined as an hexadecimal number (for instance, EXCP_HLT is 0x10001).
Signed-off-by: Laurent Vivier <[email protected]> Reviewed-by: Eric Blake <[email protected]> Acked-by: Riku Voipio <[email protected]> Signed-off-by: Michael Tokarev <[email protected]> --- 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 6004ece..3ad70f8 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -2030,7 +2030,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.1.4
