diff options
author | Borislav Petkov <[email protected]> | 2018-03-06 10:49:12 +0100 |
---|---|---|
committer | Thomas Gleixner <[email protected]> | 2018-03-08 12:01:10 +0100 |
commit | 5ad751053704df3f00d2bb2dc9345c697c212150 (patch) | |
tree | b06b86656b9c21ad71cb8088281e938f33185b3b | |
parent | ac65ddad4a23d46529f921fdf8f7b7b6d14a15d8 (diff) |
panic: Add closing panic marker parenthesis
Otherwise it looks unbalanced.
Signed-off-by: Borislav Petkov <[email protected]>
Signed-off-by: Thomas Gleixner <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Josh Poimboeuf <[email protected]>
Cc: Linus Torvalds <[email protected]>
Cc: Andy Lutomirski <[email protected]>
Link: https://lkml.kernel.org/r/[email protected]
-rw-r--r-- | kernel/panic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/panic.c b/kernel/panic.c index 2cfef408fec9..9fb023d0cae1 100644 --- a/kernel/panic.c +++ b/kernel/panic.c @@ -289,7 +289,7 @@ void panic(const char *fmt, ...) disabled_wait(caller); } #endif - pr_emerg("---[ end Kernel panic - not syncing: %s\n", buf); + pr_emerg("---[ end Kernel panic - not syncing: %s ]---\n", buf); local_irq_enable(); for (i = 0; ; i += PANIC_TIMER_STEP) { touch_softlockup_watchdog(); |