summaryrefslogtreecommitdiff
path: root/regcomp.c
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2016-03-07 15:18:07 +0000
committerDavid Mitchell <davem@iabyn.com>2016-03-07 15:18:07 +0000
commit7581d194b346c33102f51d82cfa066407e59724a (patch)
treedfd56a4b432d01d7a56aadb5653ec8d7bbb7248b /regcomp.c
parent06a2b43f40385805090cb01c6d03c30f50de1661 (diff)
downloadperl-7581d194b346c33102f51d82cfa066407e59724a.tar.gz
S_study_chunk(): silence compiler warning
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 d0133fe7e6..58bf618e8f 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -4392,10 +4392,10 @@ S_study_chunk(pTHX_ RExC_state_t *pRExC_state, regnode **scanp,
DEBUG_TRIE_COMPILE_r({
regprop(RExC_rx, RExC_mysv, tail, NULL, pRExC_state);
- PerlIO_printf( Perl_debug_log, "%*s%s %d:%s\n",
+ PerlIO_printf( Perl_debug_log, "%*s%s %"UVuf":%s\n",
(int)depth * 2 + 2, "",
"Looking for TRIE'able sequences. Tail node is ",
- tail - RExC_emit_start,
+ (UV)(tail - RExC_emit_start),
SvPV_nolen_const( RExC_mysv )
);
});