summaryrefslogtreecommitdiffstats
path: root/src/parser_bison.y
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2021-06-16 01:45:29 +0200
committerFlorian Westphal <fw@strlen.de>2021-06-21 14:44:58 +0200
commit4892fceea2b59415c9714293689f3f0d07ac5057 (patch)
tree3b41511008eaa8a5ca9f8817eba01cea2448e4be /src/parser_bison.y
parent767f0af82a3896a9a643de281cb020d04a7b7cf0 (diff)
src: add queue expr and flags to queue_stmt_alloc
Preparation patch to avoid too much $<stmt>$ references in the parser. Signed-off-by: Florian Westphal <fw@strlen.de>
Diffstat (limited to 'src/parser_bison.y')
-rw-r--r--src/parser_bison.y2
1 files changed, 1 insertions, 1 deletions
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);
}
;