summaryrefslogtreecommitdiff
path: root/pp_ctl.c
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2006-09-06 16:54:19 +0000
committerSteve Hay <SteveHay@planit.com>2006-09-06 16:54:19 +0000
commitdf43650bac48846555252ca61d5394988cdf564f (patch)
treef3154066dd135261a1c5900e8b3c6926f775107f /pp_ctl.c
parente8a70c6f06776f8dc521036f63b8c13ae18d2746 (diff)
downloadperl-df43650bac48846555252ca61d5394988cdf564f.tar.gz
cxtype is a U16, not a U32 (Stops VC++ complaining)
p4raw-id: //depot/perl@28793
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 4a1c634681..832f189c11 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -1808,7 +1808,7 @@ PP(pp_enteriter)
register PERL_CONTEXT *cx;
const I32 gimme = GIMME_V;
SV **svp;
- U32 cxtype = CXt_LOOP | CXp_FOREACH;
+ U16 cxtype = CXt_LOOP | CXp_FOREACH;
#ifdef USE_ITHREADS
void *iterdata;
#endif