diff options
author | Steve Hay <SteveHay@planit.com> | 2006-09-06 16:54:19 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2006-09-06 16:54:19 +0000 |
commit | df43650bac48846555252ca61d5394988cdf564f (patch) | |
tree | f3154066dd135261a1c5900e8b3c6926f775107f /pp_ctl.c | |
parent | e8a70c6f06776f8dc521036f63b8c13ae18d2746 (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |