]> git.vpit.fr Git - perl/modules/indirect.git/blobdiff - indirect.xs
Fix negation precedence
[perl/modules/indirect.git] / 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);