summaryrefslogtreecommitdiff
path: root/regcomp.c
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2007-10-08 08:46:36 +0000
committerSteve Hay <SteveHay@planit.com>2007-10-08 08:46:36 +0000
commit6bdeddd23b939aa3cc0ba14b253df11198918e70 (patch)
tree4b521f1cbb1d7d5e96c2aa98ce3548469d6bf2af /regcomp.c
parent646ca9b2c4b7cf8e6d2771a171c1deb0b8a7852c (diff)
downloadperl-6bdeddd23b939aa3cc0ba14b253df11198918e70.tar.gz
Silence compiler warnings on Win32 (VC6)
p4raw-id: //depot/perl@32064
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 603fe5b920..99cb4645e9 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -1172,7 +1172,7 @@ is the recommended Unicode-aware way of saying
SvUTF8_on(zlopp); \
av_push(revcharmap, zlopp); \
} else { \
- char ooooff = uvc; \
+ char ooooff = (char)uvc; \
av_push(revcharmap, newSVpvn(&ooooff, 1)); \
} \
} STMT_END
@@ -6504,7 +6504,7 @@ S_reg_namedseq(pTHX_ RExC_state_t *pRExC_state, UV *valuep)
*valuep = cp;
return NULL;
}
- string = cp;
+ string = (char)cp;
sv_str= newSVpvn(&string, 1);
} else {
/* fetch the charnames handler for this scope */