Subject: | perl-Compress-Raw-Bzip2-2.069 bug report |
Date: | Tue, 6 Dec 2016 08:36:19 +0000 |
To: | "bug-Compress-Raw-Bzip2 [...] rt.cpan.org" <bug-Compress-Raw-Bzip2 [...] rt.cpan.org> |
From: | David Binderman <dcb314 [...] hotmail.com> |
Hello there,
Bzip2.xs:561: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)) {
Also:
Bzip2.xs:622:8: warning: logical not is only applied to the left hand side of this bitwise operator [-Wlogical-not-parentheses]
Duplicate.
Regards
David Binderman