summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-02-15 10:02:55 -0700
committerKarl Williamson <public@khwilliamson.com>2011-02-15 10:39:17 -0700
commit9d8a3661cb9e691c8f2dd4220407a22da2569058 (patch)
tree011810d6b0bea444bac241b8f4c9af7c7de26d3f /toke.c
parent7319f91d2a5083b255891bbdec7edc0bdfa49f4d (diff)
downloadperl-9d8a3661cb9e691c8f2dd4220407a22da2569058.tar.gz
toke.c: silence win32 compiler warning
Diffstat (limited to 'toke.c')
-rw-r--r--toke.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toke.c b/toke.c
index a2fba3cae9..fc6b8dfc35 100644
--- a/toke.c
+++ b/toke.c
@@ -4328,7 +4328,7 @@ Perl_yylex(pTHX)
if (PL_lex_brackets > 100)
Renew(PL_lex_brackstack, PL_lex_brackets + 10, char);
PL_lex_brackstack[PL_lex_brackets++] =
- (next_type >> 16) & 0xff;
+ (char) ((next_type >> 16) & 0xff);
}
if (next_type & (2<<24))
PL_lex_allbrackets++;