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 ac5b1e9..89ef7ad 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)