diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-11-06 19:59:59 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-11-06 19:59:59 +0000 |
commit | faccc32bb7c59a53878549eecfb9041c1d7a78f3 (patch) | |
tree | e2014b6ae0fc0ec6c167f25d57eb3e57e77ef46b /regcomp.c | |
parent | 57b0da177c2b783cf692c833d7155067adca9d4b (diff) | |
download | perl-faccc32bb7c59a53878549eecfb9041c1d7a78f3.tar.gz |
More printf miscasts flushed out.
p4raw-id: //depot/cfgperl@4525
Diffstat (limited to 'regcomp.c')
-rw-r--r-- | regcomp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. */ |