Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6f0dcb72 authored by Linus Torvalds's avatar Linus Torvalds
Browse files

Fix up try_to_freeze() usage in arch/i386/kernel/signal.c

The parentheses were missing. Noted by Pavel Machek.
parent 2031d0f5
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -608,7 +608,7 @@ int fastcall do_signal(struct pt_regs *regs, sigset_t *oldset)
	if (!user_mode(regs))
	if (!user_mode(regs))
		return 1;
		return 1;


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


	if (!oldset)
	if (!oldset)