diff options
-rw-r--r-- | kern/panic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kern/panic.c b/kern/panic.c index a60294de..f9c3f59e 100644 --- a/kern/panic.c +++ b/kern/panic.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010 Richard Braun. + * Copyright (c) 2010, 2012, 2013 Richard Braun. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -30,7 +30,7 @@ panic(const char *format, ...) cpu_intr_disable(); cpu_halt_broadcast(); - printk("\nkernel panic: "); + printk("\npanic: "); va_start(list, format); vprintk(format, list); printk("\n"); |