summaryrefslogtreecommitdiff
path: root/pp.c
diff options
context:
space:
mode:
authorArtur Bergman <sky@nanisky.com>2001-09-10 11:54:25 +0000
committerArtur Bergman <sky@nanisky.com>2001-09-10 11:54:25 +0000
commitcbfa9890bcdf8102686f127e6107a72e887a941e (patch)
treeebe77434b703bccc649fa0237dc967b71be23c61 /pp.c
parente830ead6522d515d0446426f6fbd3f73a7e49697 (diff)
downloadperl-cbfa9890bcdf8102686f127e6107a72e887a941e.tar.gz
Silence some more warnings INT2PTR.
p4raw-id: //depot/perl@11972
Diffstat (limited to 'pp.c')
-rw-r--r--pp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp.c b/pp.c
index 63facbe821..5ab80aae7c 100644
--- a/pp.c
+++ b/pp.c
@@ -4199,7 +4199,7 @@ PP(pp_split)
if (pm->op_pmreplroot) {
#ifdef USE_ITHREADS
- ary = GvAVn((GV*)PL_curpad[(PADOFFSET)pm->op_pmreplroot]);
+ ary = GvAVn((GV*)PL_curpad[INT2PTR(PADOFFSET, pm->op_pmreplroot)]);
#else
ary = GvAVn((GV*)pm->op_pmreplroot);
#endif