In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/e74036d119d0e671765ea56042a585158a686d2c?hp=dd369969a58d736f281ffebe36fc24ab45b29fa6>
- Log ----------------------------------------------------------------- commit e74036d119d0e671765ea56042a585158a686d2c Author: Jarkko Hietaniemi <[email protected]> Date: Thu Sep 4 12:47:27 2014 -0400 %ld expected long int, but got ssize_t. ----------------------------------------------------------------------- Summary of changes: regcomp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/regcomp.c b/regcomp.c index 3f12e97..a1422d0 100644 --- a/regcomp.c +++ b/regcomp.c @@ -7113,8 +7113,8 @@ reStudy: /* Guard against an embedded (?=) or (?<=) with a longer minlen than the "real" pattern. */ DEBUG_OPTIMISE_r({ - PerlIO_printf(Perl_debug_log,"minlen: %"IVdf" r->minlen:%"IVdf" maxlen:%ld\n", - (IV)minlen, (IV)r->minlen, RExC_maxlen); + PerlIO_printf(Perl_debug_log,"minlen: %"IVdf" r->minlen:%"IVdf" maxlen:%"IVdf"\n", + (IV)minlen, (IV)r->minlen, (IV)RExC_maxlen); }); r->minlenret = minlen; if (r->minlen < minlen) -- Perl5 Master Repository
