aboutsummaryrefslogtreecommitdiff
path: root/util-linux/script.c
diff options
context:
space:
mode:
Diffstat (limited to 'util-linux/script.c')
-rw-r--r--util-linux/script.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/script.c b/util-linux/script.c
index 2e103fd0f..a9f24b10e 100644
--- a/util-linux/script.c
+++ b/util-linux/script.c
@@ -181,6 +181,6 @@ int script_main(int argc UNUSED_PARAM, char **argv)
181 181
182 /* Non-ignored signals revert to SIG_DFL on exec anyway */ 182 /* Non-ignored signals revert to SIG_DFL on exec anyway */
183 /*signal(SIGCHLD, SIG_DFL);*/ 183 /*signal(SIGCHLD, SIG_DFL);*/
184 execl(shell, shell, shell_opt, shell_arg, NULL); 184 execl(shell, shell, shell_opt, shell_arg, (char *) NULL);
185 bb_simple_perror_msg_and_die(shell); 185 bb_simple_perror_msg_and_die(shell);
186} 186}