Procházet zdrojové kódy

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

The parentheses were missing. Noted by Pavel Machek.
Linus Torvalds před 20 roky
rodič
revize
6f0dcb72d6
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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))
 	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)