From: Vincent Pit Date: Wed, 25 Feb 2009 20:27:35 +0000 (+0100) Subject: Fix negation precedence X-Git-Tag: v0.12~17 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=commitdiff_plain;h=443a0a4c9ac49515e3046f161d909ad4eb4aadfb Fix negation precedence --- diff --git a/indirect.xs b/indirect.xs index b5e0675..c8ca38f 100644 --- a/indirect.xs +++ b/indirect.xs @@ -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);