From: Nicholas Clark Date: Sat, 7 Nov 2009 11:11:27 +0000 (+0000) Subject: Placate a warning from Borland's compiler. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=eda4663d0f345e78f0a82529a08f3aa28c98ff2c;p=p5sagit%2Fp5-mst-13.2.git Placate a warning from Borland's compiler. --- diff --git a/toke.c b/toke.c index deb3b11..c18adea 100644 --- a/toke.c +++ b/toke.c @@ -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