From df43650bac48846555252ca61d5394988cdf564f Mon Sep 17 00:00:00 2001 From: Steve Hay Date: Wed, 6 Sep 2006 16:54:19 +0000 Subject: cxtype is a U16, not a U32 (Stops VC++ complaining) p4raw-id: //depot/perl@28793 --- pp_ctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pp_ctl.c') 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 -- cgit v1.2.1