diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-02-15 10:02:55 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-02-15 10:39:17 -0700 |
commit | 9d8a3661cb9e691c8f2dd4220407a22da2569058 (patch) | |
tree | 011810d6b0bea444bac241b8f4c9af7c7de26d3f /toke.c | |
parent | 7319f91d2a5083b255891bbdec7edc0bdfa49f4d (diff) | |
download | perl-9d8a3661cb9e691c8f2dd4220407a22da2569058.tar.gz |
toke.c: silence win32 compiler warning
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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++; |