Subject: | perl-Gnome2-VFS-1.082 bug report |
Date: | Mon, 19 Dec 2016 14:53:05 +0000 |
To: | "bug-Gnome2-VFS [...] rt.cpan.org" <bug-Gnome2-VFS [...] rt.cpan.org> |
From: | David Binderman <dcb314 [...] hotmail.com> |
Hello there,
xs/GnomeVFSOps.xs:237:6: warning: logical not is only applied to the left hand side of this comparison [-Wlogical-not-parentheses]
Source code is
if (! bytes > 0)
croak ("The number of bytes to read must be greater than 0");
Suggest new code
if (bytes <= 0)
croak ("The number of bytes to read must be greater than 0");
Regards
David Binderman