Skip to content

Commit

Permalink
[PATCH] mips: fixed try_to_freeze build error
Browse files Browse the repository at this point in the history
arch/mips/kernel/signal.c: In function 'do_signal':
arch/mips/kernel/signal.c:460: error: too many arguments to function 'try_to_freeze'

Signed-off-by: Yoichi Yuasa <yuasa@hh.iij4u.or.jp>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Yoichi Yuasa authored and Linus Torvalds committed Jun 27, 2005
1 parent 3212c6b commit d4b3a80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/mips/kernel/signal.c
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ static int do_signal(sigset_t *oldset, struct pt_regs *regs)
if (!user_mode(regs))
return 1;

if (try_to_freeze(0))
if (try_to_freeze())
goto no_signal;

if (!oldset)
Expand Down

0 comments on commit d4b3a80

Please sign in to comment.