summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-10-15 23:53:25 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-10-15 23:53:25 +0000
commitacb746053d23ffdeb058c98e7148ae317e2c9b9d (patch)
tree640d3a6045aadb1f81b31a4b1cef65ec7962aea8 /op.c
parentc8e3bb4c8218524992d6c15718b8c60041841fa3 (diff)
downloadperl-acb746053d23ffdeb058c98e7148ae317e2c9b9d.tar.gz
s/last/first/ typo in append_list()
p4raw-id: //depot/perl@1974
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 eb4856e0bc..0ad56507ea 100644
--- a/op.c
+++ b/op.c
@@ -1917,7 +1917,7 @@ append_list(I32 type, LISTOP *first, LISTOP *last)
first->op_last = last->op_last;
first->op_children += last->op_children;
if (first->op_children)
- last->op_flags |= OPf_KIDS;
+ first->op_flags |= OPf_KIDS;
Safefree(last);
return (OP*)first;