In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/a4c678398533b657275ce51755ac2edd70958800?hp=8fbd1c2c3d469d715d854ea1a69c582c21187f1f>
- Log ----------------------------------------------------------------- commit a4c678398533b657275ce51755ac2edd70958800 Author: Tony Cook <[email protected]> Date: Tue Dec 2 10:28:08 2014 +1100 fix g++ builds: conversions from void * need a cast ----------------------------------------------------------------------- Summary of changes: sv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sv.c b/sv.c index d1a01c5..04b8fa8 100644 --- a/sv.c +++ b/sv.c @@ -14208,7 +14208,7 @@ Perl_ss_dup(pTHX_ PerlInterpreter *proto_perl, CLONE_PARAMS* param) TOPPTR(nss,ix) = parser_dup((const yy_parser*)ptr, param); break; case SAVEt_GP_ALIASED_SV: { - GP * gp_ptr = POPPTR(ss,ix); + GP * gp_ptr = (GP *)POPPTR(ss,ix); GP * new_gp_ptr = gp_dup(gp_ptr, param); TOPPTR(nss,ix) = new_gp_ptr; new_gp_ptr->gp_refcnt++; -- Perl5 Master Repository
