In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/7f8a472bea19cb7746a1be14c8fe5cfde32c6363?hp=fb926b48abdbc7a4f69369fa58417a8620abe15c>
- Log ----------------------------------------------------------------- commit 7f8a472bea19cb7746a1be14c8fe5cfde32c6363 Author: Karl Williamson <[email protected]> Date: Wed Feb 8 15:48:56 2017 -0700 regcomp.c: Fix so will compile on C++11 See 147e38468b8279e26a0ca11e4efd8492016f2702 for complete explanation ----------------------------------------------------------------------- Summary of changes: regcomp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regcomp.c b/regcomp.c index 48c8d8da04..920ac4e88d 100644 --- a/regcomp.c +++ b/regcomp.c @@ -6601,7 +6601,7 @@ S_compile_runtime_code(pTHX_ RExC_state_t * const pRExC_state, SV * const errsv = ERRSV; if (SvTRUE_NN(errsv)) /* use croak_sv ? */ - Perl_croak_nocontext("%"SVf, SVfARG(errsv)); + Perl_croak_nocontext("%" SVf, SVfARG(errsv)); } assert(SvROK(qr_ref)); qr = SvRV(qr_ref); -- Perl5 Master Repository
