summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorVincent Pit <perl@profvince.com>2007-12-25 18:12:33 +0100
committerNicholas Clark <nick@ccl4.org>2007-12-29 23:00:03 +0000
commit50baa5ea2240b5b5f0f2d876ef7d68fbb74f49e4 (patch)
treebdcf0394efbbebedbddaca85fade2001391d6270 /op.c
parent50af2e611e4aecf342d3df7e3a9c906c5174ca05 (diff)
downloadperl-50baa5ea2240b5b5f0f2d876ef7d68fbb74f49e4.tar.gz
Typo in op.c
Message-ID: <47712BF1.9060200@profvince.com> (And then an update to make the tests in gv.t expect the right thing, and test the behaviour that my change 26482 was originally supposed to produce, but didn't until this typo was fixed) p4raw-id: //depot/perl@32779
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 2185c25938..3828894125 100644
--- a/op.c
+++ b/op.c
@@ -8472,7 +8472,7 @@ Perl_peep(pTHX_ register OP *o)
UNOP *refgen, *rv2cv;
LISTOP *exlist;
- if ((o->op_flags && OPf_WANT) != OPf_WANT_VOID)
+ if ((o->op_flags & OPf_WANT) != OPf_WANT_VOID)
break;
if ((o->op_private & ~OPpASSIGN_BACKWARDS) != 2)