summaryrefslogtreecommitdiff
path: root/regcomp.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2014-09-04 12:47:27 -0400
committerJarkko Hietaniemi <jhi@iki.fi>2014-09-04 13:12:08 -0400
commite74036d119d0e671765ea56042a585158a686d2c (patch)
tree95254a581dedc427b7fbd1677b872b4adedb06ae /regcomp.c
parentdd369969a58d736f281ffebe36fc24ab45b29fa6 (diff)
downloadperl-e74036d119d0e671765ea56042a585158a686d2c.tar.gz
%ld expected long int, but got ssize_t.
Diffstat (limited to 'regcomp.c')
-rw-r--r--regcomp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/regcomp.c b/regcomp.c
index 3f12e97f16..a1422d080b 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)