cxtype is a U16, not a U32 (Stops VC++ complaining)
authorSteve Hay <SteveHay@planit.com>
Wed, 6 Sep 2006 16:54:19 +0000 (16:54 +0000)
committerSteve Hay <SteveHay@planit.com>
Wed, 6 Sep 2006 16:54:19 +0000 (16:54 +0000)
p4raw-id: //depot/perl@28793

pp_ctl.c

index 4a1c634..832f189 100644 (file)
--- 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