From 14da75b3c59178662442de0b14615952a0b777b5 Mon Sep 17 00:00:00 2001 From: Richard Braun Date: Thu, 28 Feb 2013 22:30:45 +0100 Subject: kern/panic: minor output change --- kern/panic.c | 4 ++-- 1 file 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"); -- cgit v1.2.3