In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/565e104c566e57989089cdc415a5561a0c5c9126?hp=1d07f51ccd6b218ad2158e1cf117585fc37d1f03>
- Log ----------------------------------------------------------------- commit 565e104c566e57989089cdc415a5561a0c5c9126 Author: Father Chrysostomos <[email protected]> Date: Sat Oct 25 13:09:24 2014 -0700 op.c: Fix C++-incompatible typo from 82209a5d9db5. ----------------------------------------------------------------------- Summary of changes: op.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/op.c b/op.c index 646433e..3e40450 100644 --- a/op.c +++ b/op.c @@ -2637,7 +2637,7 @@ Perl_op_lvalue_flags(pTHX_ OP *o, I32 type, U32 flags) assert(kid == cLISTOPx(cBINOPo->op_first)->op_last); } if (kid->op_type == OP_CONST && SvIOK(kSVOP_sv)) { - const iv = SvIV(kSVOP_sv); + const IV iv = SvIV(kSVOP_sv); if (PL_modcount != RETURN_UNLIMITED_NUMBER) PL_modcount = mods + (PL_modcount - mods) * (iv < 0 ? 0 : iv); -- Perl5 Master Repository
