| Subject: | Compress-Raw-Lzma-2.069 bug report |
| Date: | Sun, 11 Dec 2016 19:18:44 +0000 |
| To: | "bug-Compress-Raw-Lzma [...] rt.cpan.org" <bug-Compress-Raw-Lzma [...] rt.cpan.org> |
| From: | David Binderman <dcb314 [...] hotmail.com> |
Hello there,
Lzma.xs:965:8: warning: logical not is only applied to the left hand side of this bitwise operator [-Wlogical-not-parentheses]
Source code is
if(! s->flags & FLAG_APPEND_OUTPUT) {
Maybe better code
if(! (s->flags & FLAG_APPEND_OUTPUT)) {
Regards
David Binderman