From 4892fceea2b59415c9714293689f3f0d07ac5057 Mon Sep 17 00:00:00 2001 From: Florian Westphal Date: Wed, 16 Jun 2021 01:45:29 +0200 Subject: src: add queue expr and flags to queue_stmt_alloc Preparation patch to avoid too much $$ references in the parser. Signed-off-by: Florian Westphal --- src/parser_bison.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/parser_bison.y') diff --git a/src/parser_bison.y b/src/parser_bison.y index a329538a..7883437f 100644 --- a/src/parser_bison.y +++ b/src/parser_bison.y @@ -3744,7 +3744,7 @@ queue_stmt : queue_stmt_alloc close_scope_queue queue_stmt_alloc : QUEUE { - $$ = queue_stmt_alloc(&@$); + $$ = queue_stmt_alloc(&@$, NULL, 0); } ; -- cgit v1.2.3