Explorar o código

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

The parentheses were missing. Noted by Pavel Machek.
Linus Torvalds %!s(int64=20) %!d(string=hai) anos
pai
achega
6f0dcb72d6
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      arch/i386/kernel/signal.c

+ 1 - 1
arch/i386/kernel/signal.c

@@ -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)