projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2031d0f
)
Fix up try_to_freeze() usage in arch/i386/kernel/signal.c
author
Linus Torvalds
<torvalds@ppc970.osdl.org>
Sun, 26 Jun 2005 03:09:12 +0000
(20:09 -0700)
committer
Linus Torvalds
<torvalds@ppc970.osdl.org>
Sun, 26 Jun 2005 03:09:12 +0000
(20:09 -0700)
The parentheses were missing. Noted by Pavel Machek.
arch/i386/kernel/signal.c
patch
|
blob
|
history
diff --git
a/arch/i386/kernel/signal.c
b/arch/i386/kernel/signal.c
index ac5b1e975c5c9ac82c5bc77c9cd1150750a3936a..89ef7adc63a4be19611f57b580fddf46259dbd73 100644
(file)
--- a/
arch/i386/kernel/signal.c
+++ b/
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)