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
Sun Dec 11 14:52:09 2016pmqs [...] cpan.org - Correspondence added
Thanks David
Change made.
Paul
Sun Dec 11 14:52:09 2016The RT System itself - Status changed from 'new' to 'open'
Sun Dec 11 14:52:20 2016pmqs [...] cpan.org - Status changed from 'open' to 'patched'
Thu Dec 29 06:00:09 2016pmqs [...] cpan.org - Status changed from 'patched' to 'resolved'
Thu Dec 29 06:00:10 2016pmqs [...] cpan.org - Fixed in 2.070 added