commit | 6f0dcb72d6a053fff9288b742d3bcc9b23f0f6db | [log] [tgz] |
---|---|---|
author | Linus Torvalds <torvalds@ppc970.osdl.org> | Sat Jun 25 20:09:12 2005 -0700 |
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | Sat Jun 25 20:09:12 2005 -0700 |
tree | d1d56a4a3295f62a01fc06ffc764da474d2aa9b1 | |
parent | 2031d0f586839bc68f35bcf8580b18947f8491d4 [diff] |
Fix up try_to_freeze() usage in arch/i386/kernel/signal.c The parentheses were missing. Noted by Pavel Machek.
diff --git a/arch/i386/kernel/signal.c b/arch/i386/kernel/signal.c index ac5b1e9..89ef7ad 100644 --- a/arch/i386/kernel/signal.c +++ b/arch/i386/kernel/signal.c
@@ -608,7 +608,7 @@ if (!user_mode(regs)) return 1; - if (try_to_freeze) + if (try_to_freeze()) goto no_signal; if (!oldset)