[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1348769968-2696-1-git-send-email-joshua.taylor0@gmail.com>
Date: Thu, 27 Sep 2012 14:19:28 -0400
From: Josh Taylor <joshua.taylor0@...il.com>
To: akpm@...ux-foundation.org, mingo@...nel.org
Cc: linux-kernel@...r.kernel.org,
Josh Taylor <joshua.taylor0@...il.com>
Subject: [PATCH 3/3] Kernel: Corrected space error after ','
Signed-off-by: Josh Taylor <joshua.taylor0@...il.com>
---
kernel/panic.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/panic.c b/kernel/panic.c
index e1b2822..176d58c 100644
--- a/kernel/panic.c
+++ b/kernel/panic.c
@@ -100,7 +100,7 @@ void panic(const char *fmt, ...)
va_start(args, fmt);
vsnprintf(buf, sizeof(buf), fmt, args);
va_end(args);
- printk(KERN_EMERG "Kernel panic - not syncing: %s\n",buf);
+ printk(KERN_EMERG "Kernel panic - not syncing: %s\n", buf);
#ifdef CONFIG_DEBUG_BUGVERBOSE
/*
* Avoid nested stack-dumping if a panic occurs during oops processing
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists