* [PATCH] wait_for_helper: trivial style cleanup
@ 2006-02-09 19:43 Oleg Nesterov
0 siblings, 0 replies; only message in thread
From: Oleg Nesterov @ 2006-02-09 19:43 UTC (permalink / raw)
To: Andrew Morton; +Cc: linux-kernel
Use NULL instead of (... *)0
Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru>
--- RC-1/kernel/kmod.c~ 2005-11-22 19:35:32.000000000 +0300
+++ RC-1/kernel/kmod.c 2006-02-10 00:44:58.000000000 +0300
@@ -170,7 +170,7 @@ static int wait_for_helper(void *data)
sa.sa.sa_handler = SIG_IGN;
sa.sa.sa_flags = 0;
siginitset(&sa.sa.sa_mask, sigmask(SIGCHLD));
- do_sigaction(SIGCHLD, &sa, (struct k_sigaction *)0);
+ do_sigaction(SIGCHLD, &sa, NULL);
allow_signal(SIGCHLD);
pid = kernel_thread(____call_usermodehelper, sub_info, SIGCHLD);
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-02-09 18:25 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-02-09 19:43 [PATCH] wait_for_helper: trivial style cleanup Oleg Nesterov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome