diff options
| author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-25 23:09:12 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-25 23:09:12 -0400 |
| commit | 6f0dcb72d6a053fff9288b742d3bcc9b23f0f6db (patch) | |
| tree | d1d56a4a3295f62a01fc06ffc764da474d2aa9b1 /arch/i386/kernel/signal.c | |
| parent | 2031d0f586839bc68f35bcf8580b18947f8491d4 (diff) | |
Fix up try_to_freeze() usage in arch/i386/kernel/signal.c
The parentheses were missing. Noted by Pavel Machek.
Diffstat (limited to 'arch/i386/kernel/signal.c')
| -rw-r--r-- | arch/i386/kernel/signal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/i386/kernel/signal.c b/arch/i386/kernel/signal.c index ac5b1e975c5c..89ef7adc63a4 100644 --- a/arch/i386/kernel/signal.c +++ b/arch/i386/kernel/signal.c | |||
| @@ -608,7 +608,7 @@ int fastcall do_signal(struct pt_regs *regs, sigset_t *oldset) | |||
| 608 | if (!user_mode(regs)) | 608 | if (!user_mode(regs)) |
| 609 | return 1; | 609 | return 1; |
| 610 | 610 | ||
| 611 | if (try_to_freeze) | 611 | if (try_to_freeze()) |
| 612 | goto no_signal; | 612 | goto no_signal; |
| 613 | 613 | ||
| 614 | if (!oldset) | 614 | if (!oldset) |
