From 3fe7c7537e22ce17afc236827eb49e17b1954f52 Mon Sep 17 00:00:00 2001 From: TuxSH <1922548+TuxSH@users.noreply.github.com> Date: Sat, 1 Feb 2020 19:39:31 +0000 Subject: [PATCH] thermopshere: GDB_ParseExceptionFrame: fix format error --- thermosphere/src/gdb/debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thermosphere/src/gdb/debug.c b/thermosphere/src/gdb/debug.c index fcf116616..a0b9904f9 100644 --- a/thermosphere/src/gdb/debug.c +++ b/thermosphere/src/gdb/debug.c @@ -81,7 +81,7 @@ static int GDB_ParseExceptionFrame(char *out, const DebugEventInfo *info, int si n += sprintf( out + n, - "1f:%016lx;20:%016lx;21:%08x", + "1f:%016lx;20:%016lx;21:%08x;", __builtin_bswap64(*exceptionGetSpPtr(frame)), __builtin_bswap64(frame->elr_el2), __builtin_bswap32((u32)frame->spsr_el2)