summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-04-24 10:35:15 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-04-24 10:35:15 +0000
commit58bde88d59b50dfafcac03e2948c42887eb15e97 (patch)
tree99d781978b2dd36df4199fc8a55acf94ba4f2505 /op.c
parentb7c442934df5578585948a9249cd388c152963f7 (diff)
downloadperl-58bde88d59b50dfafcac03e2948c42887eb15e97.tar.gz
Fix potential precedence problem
p4raw-id: //depot/perl@31052
Diffstat (limited to 'op.c')
-rw-r--r--op.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/op.c b/op.c
index 50728a535c..d623f2b49c 100644
--- a/op.c
+++ b/op.c
@@ -1300,7 +1300,7 @@ Perl_mod(pTHX_ OP *o, I32 type)
Perl_croak(aTHX_ "That use of $[ is unsupported");
break;
case OP_STUB:
- if (o->op_flags & OPf_PARENS || PL_madskills)
+ if ((o->op_flags & OPf_PARENS) || PL_madskills)
break;
goto nomod;
case OP_ENTERSUB: