bug-gnu-utils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

BAD bug in awkgram.y


From: David O'Brien
Subject: BAD bug in awkgram.y
Date: Fri, 2 Nov 2001 15:37:54 -0800
User-agent: Mutt/1.2.5i

diff -u -r1.1.1.1 awkgram.y
--- awkgram.y   2 Nov 2001 21:05:37 -0000       1.1.1.1
+++ awkgram.y   2 Nov 2001 23:33:24 -0000
@@ -438,7 +438,7 @@
                {
                        $$ = 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 @@
 
                        $$ = node($2, $1, $3);
                        if ($$->type == Node_K_printf)
-                               count_args($$)
+                               count_args($$);
                }
        | LEX_NEXT statement_term
                { NODETYPE type;


-- 
-- David  (address@hidden)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]