summaryrefslogtreecommitdiff
path: root/regcomp.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>1999-11-06 19:59:59 +0000
committerJarkko Hietaniemi <jhi@iki.fi>1999-11-06 19:59:59 +0000
commitfaccc32bb7c59a53878549eecfb9041c1d7a78f3 (patch)
treee2014b6ae0fc0ec6c167f25d57eb3e57e77ef46b /regcomp.c
parent57b0da177c2b783cf692c833d7155067adca9d4b (diff)
downloadperl-faccc32bb7c59a53878549eecfb9041c1d7a78f3.tar.gz
More printf miscasts flushed out.
p4raw-id: //depot/cfgperl@4525
Diffstat (limited to 'regcomp.c')
-rw-r--r--regcomp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/regcomp.c b/regcomp.c
index 33dcaaf3b6..d3b2c0336f 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -867,7 +867,7 @@ Perl_pregcomp(pTHX_ char *exp, char *xend, PMOP *pm)
PL_regprecomp = Nullch;
return(NULL);
}
- DEBUG_r(PerlIO_printf(Perl_debug_log, "size %d ", PL_regsize));
+ DEBUG_r(PerlIO_printf(Perl_debug_log, "size %"IVdf" ", (IV)PL_regsize));
/* Small enough for pointer-storage convention?
If extralen==0, this means that we will not need long jumps. */