diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-10-17 01:49:05 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-10-17 01:49:05 +0000 |
commit | 7284ab6ff7f601172d43904e518728be10f2efed (patch) | |
tree | c20f9cac69868b7cbd338ced27a2eb115afd3bc4 /op.c | |
parent | 54ac30b1470a8ff581c7f203ade9d446d394b251 (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |