diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-11-07 11:11:27 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-11-07 15:37:33 +0000 |
commit | eda4663d0f345e78f0a82529a08f3aa28c98ff2c (patch) | |
tree | 4332b19fdd1d5f56e1d396c4b1ce7ae5aabfb817 /toke.c | |
parent | dec158af17062a4c9c279d90135ae9756483db40 (diff) | |
download | perl-eda4663d0f345e78f0a82529a08f3aa28c98ff2c.tar.gz |
Placate a warning from Borland's compiler.
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12822,7 +12822,7 @@ S_utf16_textfilter(pTHX_ int idx, SV *sv, int maxlen) SV *const utf16_buffer = MUTABLE_SV(IoTOP_GV(filter)); SV *const utf8_buffer = filter; IV status = IoPAGE(filter); - const bool reverse = IoLINES(filter); + const bool reverse = (bool) IoLINES(filter); I32 retval; /* As we're automatically added, at the lowest level, and hence only called |