Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e7fbaf01 authored by Kees Cook's avatar Kees Cook Committed by David S. Miller
Browse files

sparc: use %s for unaligned panic



Since unaligned_panic() takes a literal string, make sure it can never
accidentally be used as a format string.

Signed-off-by: default avatarKees Cook <keescook@chromium.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 54dcf0ce
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -166,7 +166,7 @@ unsigned long safe_compute_effective_address(struct pt_regs *regs,
/* This is just to make gcc think panic does return... */
static void unaligned_panic(char *str)
{
	panic(str);
	panic("%s", str);
}

/* una_asm.S */