]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
Fix up try_to_freeze() usage in arch/i386/kernel/signal.c
authorLinus Torvalds <torvalds@ppc970.osdl.org>
Sun, 26 Jun 2005 03:09:12 +0000 (20:09 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Sun, 26 Jun 2005 03:09:12 +0000 (20:09 -0700)
The parentheses were missing. Noted by Pavel Machek.

arch/i386/kernel/signal.c

index ac5b1e975c5c9ac82c5bc77c9cd1150750a3936a..89ef7adc63a4be19611f57b580fddf46259dbd73 100644 (file)
@@ -608,7 +608,7 @@ int fastcall do_signal(struct pt_regs *regs, sigset_t *oldset)
        if (!user_mode(regs))
                return 1;
 
-       if (try_to_freeze)
+       if (try_to_freeze())
                goto no_signal;
 
        if (!oldset)