summaryrefslogtreecommitdiff
path: root/kern/panic.c
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2013-02-28 22:30:45 +0100
committerRichard Braun <rbraun@sceen.net>2013-02-28 22:30:45 +0100
commit14da75b3c59178662442de0b14615952a0b777b5 (patch)
treed3cb8e5372c2d51cca0242a1bbd5f4367df2b8d7 /kern/panic.c
parentf18a2028bce9b5b3ea5cdeecc23b2974ccbadcb6 (diff)
kern/panic: minor output change
Diffstat (limited to 'kern/panic.c')
-rw-r--r--kern/panic.c4
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");