]> git.vpit.fr Git - perl/modules/indirect.git/commitdiff
Fix negation precedence
authorVincent Pit <vince@profvince.com>
Wed, 25 Feb 2009 20:27:35 +0000 (21:27 +0100)
committerVincent Pit <vince@profvince.com>
Wed, 25 Feb 2009 20:27:35 +0000 (21:27 +0100)
indirect.xs

index b5e0675448331df025ad1a0c67db04dc3f6f0ceb..c8ca38f3b548fd0c881bcf56289b2dde4aecf92b 100644 (file)
@@ -333,7 +333,7 @@ STATIC OP *indirect_ck_entersub(pTHX_ OP *o) {
   oo = o;
   do {
    op = (LISTOP *) oo;
-   if (!op->op_flags & OPf_KIDS)
+   if (!(op->op_flags & OPf_KIDS))
     goto done;
    oo = op->op_first;
   } while (oo->op_type != OP_PUSHMARK);