diff options
author | obrien <obrien@FreeBSD.org> | 2001-11-02 23:41:29 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-11-02 23:41:29 +0000 |
commit | 7881129170354196deb2a3aff242c013cfe1794e (patch) | |
tree | f6cb92199512020a24efda212fad043f048d7a0d | |
parent | 604e648a359bcac9a5de8be12d8a6a5d26b0dc42 (diff) | |
parent | 88a56875616bf2152ac64d74df159920dc85634b (diff) | |
download | FreeBSD-src-7881129170354196deb2a3aff242c013cfe1794e.zip FreeBSD-src-7881129170354196deb2a3aff242c013cfe1794e.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r85919,
which included commits to RCS files with non-trunk default branches.
-rw-r--r-- | contrib/awk/awkgram.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/awk/awkgram.y b/contrib/awk/awkgram.y index 649ccac..704b498 100644 --- a/contrib/awk/awkgram.y +++ b/contrib/awk/awkgram.y @@ -438,7 +438,7 @@ statement { $$ = node($3, $1, $5); if ($$->type == Node_K_printf) - count_args($$) + count_args($$); } | print opt_rexpression_list output_redir statement_term { @@ -460,7 +460,7 @@ statement $$ = node($2, $1, $3); if ($$->type == Node_K_printf) - count_args($$) + count_args($$); } | LEX_NEXT statement_term { NODETYPE type; |