summaryrefslogtreecommitdiff
path: root/regexec.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-04-23 04:36:27 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-04-23 04:36:27 +0000
commitea4bd88ad32e1739b2dac043b7359eb83315a257 (patch)
tree89b12c5ca70105108c1d6064b92009a94e5e3154 /regexec.c
parent244120070b43c8b75f213eed19655d6f4e6e2513 (diff)
downloadperl-ea4bd88ad32e1739b2dac043b7359eb83315a257.tar.gz
Pointer to UV casting.
p4raw-id: //depot/perl@16101
Diffstat (limited to 'regexec.c')
-rw-r--r--regexec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/regexec.c b/regexec.c
index 05839f0298..1f1d66818c 100644
--- a/regexec.c
+++ b/regexec.c
@@ -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. */