In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/3667b52644f6de04e0794d70fd3b6643f66442d7?hp=cbacc9aa064469dbad90cdce51a3e7abbdf202be>
- Log ----------------------------------------------------------------- commit 3667b52644f6de04e0794d70fd3b6643f66442d7 Author: Father Chrysostomos <[email protected]> Date: Fri Sep 14 22:55:56 2012 -0700 Fix build under C++ Commit 9ac6f7d90 was missing a few casts. ----------------------------------------------------------------------- Summary of changes: sv.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/sv.c b/sv.c index 5996ec1..2bf9e8f 100644 --- a/sv.c +++ b/sv.c @@ -10381,7 +10381,8 @@ Perl_sv_vcatpvfn_flags(pTHX_ SV *const sv, const char *const pat, const STRLEN p goto vdblank; } vecsv = sv_newmortal(); - scan_vstring(vecstr, vecstr + veclen, vecsv); + scan_vstring((char *)vecstr, (char *)vecstr + veclen, + vecsv); vecstr = (U8*)SvPV_const(vecsv, veclen); vec_utf8 = DO_UTF8(vecsv); } -- Perl5 Master Repository
