Skip to content

Commit

Permalink
Fix up try_to_freeze() usage in arch/i386/kernel/signal.c
Browse files Browse the repository at this point in the history
The parentheses were missing. Noted by Pavel Machek.
  • Loading branch information
Linus Torvalds committed Jun 26, 2005
1 parent 2031d0f commit 6f0dcb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/i386/kernel/signal.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 6f0dcb7

Please sign in to comment.