From: Michal Simek <[email protected]>
Signed-off-by: Michal Simek <[email protected]> --- testcases/kernel/syscalls/kill/kill05.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/testcases/kernel/syscalls/kill/kill05.c b/testcases/kernel/syscalls/kill/kill05.c index b3b933b..9ea39fb 100644 --- a/testcases/kernel/syscalls/kill/kill05.c +++ b/testcases/kernel/syscalls/kill/kill05.c @@ -84,7 +84,7 @@ extern void rm_shm(int); void cleanup(void); void setup(void); void do_child(void); -void do_master_child(void); +void do_master_child(char **av); char *TCID= "kill05"; int TST_TOTAL = 1; @@ -121,7 +121,7 @@ int main(int ac, char **av) tst_brkm(TBROK, cleanup, "Fork failed"); if (pid == 0) { - do_master_child(); + do_master_child(av); return (0); } else { @@ -138,7 +138,7 @@ int main(int ac, char **av) * do_master_child() */ void -do_master_child() +do_master_child(char **av) { int lc; /* loop counter */ -- 1.5.5.1 ------------------------------------------------------------------------------ Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA -OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise -Strategies to boost innovation and cut costs with open source participation -Receive a $600 discount off the registration fee with the source code: SFAD http://p.sf.net/sfu/XcvMzF8H _______________________________________________ Ltp-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ltp-list
