stray typo found by Hugo van der Sanden
authorGurusamy Sarathy <gsar@cpan.org>
Sat, 17 Oct 1998 01:49:05 +0000 (01:49 +0000)
committerGurusamy Sarathy <gsar@cpan.org>
Sat, 17 Oct 1998 01:49:05 +0000 (01:49 +0000)
p4raw-id: //depot/perl@1988

op.c

diff --git a/op.c b/op.c
index 6bfa1a1..c04f082 100644 (file)
--- 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);
 }