X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=ext%2FB%2FB%2FLint.pm;h=1510d365cdc9254475974a498075a8546060ad8d;hb=1f01d15689eebf8cac0437bd6198b0ee0e3a2c33;hp=81e0f0eaa4d6ecde46ab3aec8a6e273d5c3b701b;hpb=b0a2b4f5d11a46676e755e10a5905ed77204b20d;p=p5sagit%2Fp5-mst-13.2.git diff --git a/ext/B/B/Lint.pm b/ext/B/B/Lint.pm index 81e0f0e..1510d36 100644 --- a/ext/B/B/Lint.pm +++ b/ext/B/B/Lint.pm @@ -1,6 +1,6 @@ package B::Lint; -our $VERSION = '1.00'; +our $VERSION = '1.01'; =head1 NAME @@ -164,7 +164,7 @@ sub gimme { my $op = shift; my $flags = $op->flags; if ($flags & OPf_WANT) { - return(($flags & OPf_WANT_LIST) ? 1 : 0); + return(($flags & OPf_WANT == OPf_WANT_LIST) ? 1 : 0); } return undef; }