From: Alan T. DeKok Date: Thu, 25 Dec 2025 15:55:39 +0000 (-0500) Subject: cast to avoid -Wcomma warning X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=71e38ef0a3a8be2dec7cab4df3d500bf906c2eee;p=thirdparty%2Ffreeradius-server.git cast to avoid -Wcomma warning --- diff --git a/src/lib/unlang/xlat_purify.c b/src/lib/unlang/xlat_purify.c index f2ce3d6bbb6..a7e0403624a 100644 --- a/src/lib/unlang/xlat_purify.c +++ b/src/lib/unlang/xlat_purify.c @@ -87,7 +87,7 @@ static int xlat_purify_list_internal(xlat_exp_head_t *head, request_t *request, our_flags.constant = our_flags.pure = true; /* we flip these if the children are not pure */ for (node = fr_dlist_head(&head->dlist); - next = fr_dlist_next(&head->dlist, node), node != NULL; + (void) (next = fr_dlist_next(&head->dlist, node)), node != NULL; node = next) { if (!node->flags.can_purify) continue;