summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-10-17 01:49:05 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-10-17 01:49:05 +0000
commit7284ab6ff7f601172d43904e518728be10f2efed (patch)
treec20f9cac69868b7cbd338ced27a2eb115afd3bc4 /op.c
parent54ac30b1470a8ff581c7f203ade9d446d394b251 (diff)
downloadperl-7284ab6ff7f601172d43904e518728be10f2efed.tar.gz
stray typo found by Hugo van der Sanden
p4raw-id: //depot/perl@1988
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 6bfa1a195d..c04f08256e 100644
--- a/op.c
+++ b/op.c
@@ -2077,7 +2077,7 @@ newBINOP(I32 type, I32 flags, OP *first, OP *last)
if (binop->op_next)
return (OP*)binop;
- binop->op_last = last = binop->op_first->op_sibling;
+ binop->op_last = binop->op_first->op_sibling;
return fold_constants((OP *)binop);
}