From 913e5d0cfa711356ff88436df825fb5bb75925eb Mon Sep 17 00:00:00 2001 From: Simon Arlott Date: Sun, 24 Dec 2006 13:33:55 +0000 Subject: Add missing newline to reboot printk. --- kernel/panic.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/kernel/panic.c b/kernel/panic.c index 525e365..bd75466 100644 --- a/kernel/panic.c +++ b/kernel/panic.c @@ -106,7 +106,7 @@ NORET_TYPE void panic(const char * fmt, ...) * Delay timeout seconds before rebooting the machine. * We can't use the "normal" timers since we just panicked.. */ - printk(KERN_EMERG "Rebooting in %d seconds..",panic_timeout); + printk(KERN_EMERG "Rebooting in %d seconds...\n",panic_timeout); for (i = 0; i < panic_timeout*1000; ) { touch_nmi_watchdog(); i += panic_blink(i); -- 1.5.0.1