diff options
author | Karl Williamson <khw@cpan.org> | 2016-12-22 18:24:26 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2016-12-23 11:41:32 -0700 |
commit | 10085f4d25c1ff267f8ba5b37f225245a73a7c66 (patch) | |
tree | d4b1c2649f96d6dcfe58ab6ce52b556db62d8090 | |
parent | eaf412bfffcc8de096d1389f01cecba0beca4c8d (diff) | |
download | perl-10085f4d25c1ff267f8ba5b37f225245a73a7c66.tar.gz |
toke.c: Silence win32 compiler warning.
-rw-r--r-- | toke.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -9467,7 +9467,8 @@ S_scan_subst(pTHX_ char *start) * spreads over */ sv_upgrade(PL_parser->lex_sub_repl, SVt_PVNV); ((XPVNV*)SvANY(PL_parser->lex_sub_repl))->xnv_u.xnv_lines = 0; - ((XPVIV*)SvANY(PL_parser->lex_sub_repl))->xiv_u.xivu_eval_seen = es; + ((XPVIV*)SvANY(PL_parser->lex_sub_repl))->xiv_u.xivu_eval_seen = + cBOOL(es); } PL_lex_op = (OP*)pm; |