From c367505fbefb1bacd83a7eaebb36c1a62af1d3cd Mon Sep 17 00:00:00 2001 From: Simon Halvorsen Date: Thu, 4 Jun 2026 11:57:20 +0200 Subject: [PATCH] CFE-664: Fixed unwanted syntax-error due to trailing commas in function/body calls Ticket: CFE-664 Changelog: Title Signed-off-by: Simon Halvorsen --- libpromises/cf3parse.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libpromises/cf3parse.y b/libpromises/cf3parse.y index 047843fa68..f3992e6bab 100644 --- a/libpromises/cf3parse.y +++ b/libpromises/cf3parse.y @@ -839,7 +839,7 @@ givearglist: '(' gaitems: /* empty */ | gaitem - | gaitems ',' gaitem + | gaitem ',' gaitems | gaitem error { ParseError("Expected ',', wrong input '%s'", yytext);