summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2006-08-10 11:35:53 +0300
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-08-10 08:22:01 +0000
commit8d67e5b79224a13e1d09d9e60175b92375b84f84 (patch)
tree31fe4dfd9e1b66eab254aafea9a3f16acf568a81
parent8dbe6e89d9041307685bd073e804a758fedfc274 (diff)
downloadperl-8d67e5b79224a13e1d09d9e60175b92375b84f84.tar.gz
doio.c: vararg NULLs must be cast right
Message-Id: <200608100535.k7A5Zr2Z156515@kosh.hut.fi> p4raw-id: //depot/perl@28688
-rw-r--r--doio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/doio.c b/doio.c
index 399cadf3eb..bc301300a7 100644
--- a/doio.c
+++ b/doio.c
@@ -1481,7 +1481,7 @@ Perl_do_exec3(pTHX_ const char *incmd, int fd, int do_report)
if (s[-1] == '\'') {
*--s = '\0';
PERL_FPU_PRE_EXEC
- PerlProc_execl(PL_cshname, "csh", flags, ncmd, NULL);
+ PerlProc_execl(PL_cshname, "csh", flags, ncmd, (char*)NULL);
PERL_FPU_POST_EXEC
*s = '\'';
S_exec_failed(aTHX_ PL_cshname, fd, do_report);
@@ -1530,7 +1530,7 @@ Perl_do_exec3(pTHX_ const char *incmd, int fd, int do_report)
}
doshell:
PERL_FPU_PRE_EXEC
- PerlProc_execl(PL_sh_path, "sh", "-c", cmd, NULL);
+ PerlProc_execl(PL_sh_path, "sh", "-c", cmd, (char *)NULL);
PERL_FPU_POST_EXEC
S_exec_failed(aTHX_ PL_sh_path, fd, do_report);
Safefree(cmd);