summaryrefslogtreecommitdiff
path: root/pp_ctl.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_ctl.c
parente830ead6522d515d0446426f6fbd3f73a7e49697 (diff)
downloadperl-cbfa9890bcdf8102686f127e6107a72e887a941e.tar.gz
Silence some more warnings INT2PTR.
p4raw-id: //depot/perl@11972
Diffstat (limited to 'pp_ctl.c')
-rw-r--r--pp_ctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index a7ac731d33..37c3561385 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -1779,7 +1779,7 @@ PP(pp_enteriter)
SAVESPTR(*svp);
#else
SAVEPADSV(PL_op->op_targ);
- iterdata = (void*)PL_op->op_targ;
+ iterdata = INT2PTR(void*, PL_op->op_targ);
cxtype |= CXp_PADVAR;
#endif
}