diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-09-11 11:51:04 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-09-11 11:51:04 +0000 |
commit | 56570a2c01bb06efc4e9b3e6c53b264838a70691 (patch) | |
tree | 915adf583a6104ce5254daba339aaeb187f1810f /regexec.c | |
parent | e7409c1baa36b49cba586d35d8afab7cf283d03e (diff) | |
download | perl-56570a2c01bb06efc4e9b3e6c53b264838a70691.tar.gz |
Fix a few more printf format warnings
p4raw-id: //depot/perl@28819
Diffstat (limited to 'regexec.c')
-rw-r--r-- | regexec.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -525,7 +525,7 @@ Perl_re_intuit_start(pTHX_ regexp *prog, SV *sv, char *strpos, end_point= HOP3(strend, -srch_end_shift, strbeg); } DEBUG_OPTIMISE_r({ - PerlIO_printf(Perl_debug_log, "fbm_instr len=%"IVdf" str=<%.*s>\n", + PerlIO_printf(Perl_debug_log, "fbm_instr len=%d str=<%.*s>\n", (int)(end_point - start_point), (int)(end_point - start_point), start_point); @@ -867,7 +867,7 @@ Perl_re_intuit_start(pTHX_ regexp *prog, SV *sv, char *strpos, else endpos= strend; - DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "start_shift: %"IVdf" check_at: %"IVdf" s: %"IVdf" endpos: %"IVdf"\n", + DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "start_shift: %"IVdf" check_at: %d s: %d endpos: %d\n", start_shift,check_at-strbeg,s-strbeg,endpos-strbeg)); t = s; |