diff options
author | Steve Hay <SteveHay@planit.com> | 2007-04-24 12:17:00 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2007-04-24 12:17:00 +0000 |
commit | eac04b2ef27e534c1394ef750a2964e023781dd9 (patch) | |
tree | c042ff824029316bcc57636fba1d4d4748117dd5 /toke.c | |
parent | 9e6e12112c10f1809160cb40af4fdf30fb0d160c (diff) | |
download | perl-eac04b2ef27e534c1394ef750a2964e023781dd9.tar.gz |
Silence 5 "possible loss of data" warnings from VC6
p4raw-id: //depot/perl@31055
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1629,7 +1629,7 @@ S_sublex_start(pTHX) } PL_sublex_info.super_state = PL_lex_state; - PL_sublex_info.sub_inwhat = op_type; + PL_sublex_info.sub_inwhat = (U16)op_type; PL_sublex_info.sub_op = PL_lex_op; PL_lex_state = LEX_INTERPPUSH; @@ -6185,7 +6185,7 @@ Perl_yylex(pTHX) case KEY_our: case KEY_my: case KEY_state: - PL_in_my = tmp; + PL_in_my = (U16)tmp; s = SKIPSPACE1(s); if (isIDFIRST_lazy_if(s,UTF)) { #ifdef PERL_MAD |