diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-23 04:36:27 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-23 04:36:27 +0000 |
commit | ea4bd88ad32e1739b2dac043b7359eb83315a257 (patch) | |
tree | 89b12c5ca70105108c1d6064b92009a94e5e3154 /regexec.c | |
parent | 244120070b43c8b75f213eed19655d6f4e6e2513 (diff) | |
download | perl-ea4bd88ad32e1739b2dac043b7359eb83315a257.tar.gz |
Pointer to UV casting.
p4raw-id: //depot/perl@16101
Diffstat (limited to 'regexec.c')
-rw-r--r-- | regexec.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3073,7 +3073,7 @@ S_regmatch(pTHX_ regnode *prog) "%*s %ld out of %ld..%ld cc=%"UVxf"\n", REPORT_CODE_OFF+PL_regindent*2, "", (long)n, (long)cc->min, - (long)cc->max, (UV)cc) + (long)cc->max, PTR2UV(cc) ); /* If degenerate scan matches "", assume scan done. */ |