projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
e8a70c6
)
cxtype is a U16, not a U32 (Stops VC++ complaining)
Steve Hay [Wed, 6 Sep 2006 16:54:19 +0000 (16:54 +0000)]
p4raw-id: //depot/perl@28793
pp_ctl.c
patch
|
blob
|
blame
|
history
diff --git
a/pp_ctl.c
b/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