From: Gurusamy Sarathy Date: Sat, 17 Oct 1998 01:49:05 +0000 (+0000) Subject: stray typo found by Hugo van der Sanden X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7284ab6ff7f601172d43904e518728be10f2efed;p=p5sagit%2Fp5-mst-13.2.git stray typo found by Hugo van der Sanden p4raw-id: //depot/perl@1988 --- diff --git a/op.c b/op.c index 6bfa1a1..c04f082 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); }