summaryrefslogtreecommitdiff
path: root/regcomp.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-04-26 12:23:02 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-04-26 12:23:02 +0000
commit2b36a5a0c487b5dc9b2abbd15a0708c83ccd908d (patch)
tree0bcbd7d4899fdd114f957be9ca2267fa36e7a044 /regcomp.c
parentcc6ae9e56fa29a68bc2c35e96f36dd538178ac69 (diff)
downloadperl-2b36a5a0c487b5dc9b2abbd15a0708c83ccd908d.tar.gz
The #16182 radiates U32ness.
p4raw-id: //depot/perl@16185
Diffstat (limited to 'regcomp.c')
-rw-r--r--regcomp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/regcomp.c b/regcomp.c
index 50ea0311bf..edb1f15aee 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -2149,8 +2149,8 @@ S_reg(pTHX_ RExC_state_t *pRExC_state, I32 paren, I32 *flagp)
/* Make an OPEN node, if parenthesized. */
if (paren) {
if (*RExC_parse == '?') { /* (?...) */
- U16 posflags = 0, negflags = 0;
- U16 *flagsp = &posflags;
+ U32 posflags = 0, negflags = 0;
+ U32 *flagsp = &posflags;
int logical = 0;
char *seqstart = RExC_parse;