[PATCH] panic: add missing \n

From: Jiri Slaby
Date: Thu Jan 19 2017 - 07:04:22 EST


When a system panics, the "Rebooting in X seconds.." message is never
printed because it lacks a new line. Fix it.

Signed-off-by: Jiri Slaby <jslaby@xxxxxxx>
---
kernel/panic.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/panic.c b/kernel/panic.c
index af16ab54f88e..b95959733ce0 100644
--- a/kernel/panic.c
+++ b/kernel/panic.c
@@ -249,7 +249,7 @@ void panic(const char *fmt, ...)
* Delay timeout seconds before rebooting the machine.
* We can't use the "normal" timers since we just panicked.
*/
- pr_emerg("Rebooting in %d seconds..", panic_timeout);
+ pr_emerg("Rebooting in %d seconds..\n", panic_timeout);

for (i = 0; i < panic_timeout * 1000; i += PANIC_TIMER_STEP) {
touch_nmi_watchdog();
--
2.11.0