panic.c: fix whitespace additions
authorDaniel Walker <dwalker@mvista.com>
Mon, 14 Apr 2008 17:03:50 +0000 (10:03 -0700)
committerThomas Gleixner <tglx@linutronix.de>
Mon, 26 May 2008 14:15:32 +0000 (16:15 +0200)
trivial: remove white space addition in stack protector

Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
kernel/panic.c

index 50cf925..866be9b 100644 (file)
@@ -341,14 +341,14 @@ static noinline void __stack_chk_test_func(void)
         * Besides, if we would, the test is already failed anyway so
         * time to pull the emergency brake on it.
         */
-       if ((unsigned long)__builtin_return_address(0) == 
+       if ((unsigned long)__builtin_return_address(0) ==
                                        *(((unsigned long *)&foo)+1)) {
                printk(KERN_ERR "No -fstack-protector-stack-frame!\n");
                return;
        }
 #ifdef CONFIG_FRAME_POINTER
        /* We also don't want to clobber the frame pointer */
-       if ((unsigned long)__builtin_return_address(0) == 
+       if ((unsigned long)__builtin_return_address(0) ==
                                        *(((unsigned long *)&foo)+2)) {
                printk(KERN_ERR "No -fstack-protector-stack-frame!\n");
                return;