diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2010-11-22 21:05:09 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2010-11-22 21:05:09 +0200 |
commit | 8bfefd698dfeec91e11d9dc7da9658b1d9c59a7a (patch) | |
tree | 3cbe58cafd7664d670ddea561721acc058ff8810 /command.c | |
parent | 72e119f16dd53b93638cbc713d9325ef9ddb0f0c (diff) | |
download | egawk-8bfefd698dfeec91e11d9dc7da9658b1d9c59a7a.tar.gz egawk-8bfefd698dfeec91e11d9dc7da9658b1d9c59a7a.tar.bz2 egawk-8bfefd698dfeec91e11d9dc7da9658b1d9c59a7a.zip |
Fixes from John Haque.
Diffstat (limited to 'command.c')
-rw-r--r-- | command.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2322,7 +2322,7 @@ yyreduce: for (a = (yyvsp[(2) - (3)]); a != NULL; a = a->next) count++; - subs =concat_args((yyvsp[(2) - (3)]), count); + subs = concat_args((yyvsp[(2) - (3)]), count); free_cmdarg((yyvsp[(2) - (3)])->next); (yyvsp[(2) - (3)])->next = NULL; (yyvsp[(2) - (3)])->type = D_node; |