From 0986dd191c927020bfed6c301ff166ec37736d67 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Fri, 4 Sep 2026 13:36:49 -0400 Subject: [PATCH] MT#55283 fix compiler error Change-Id: Ib13ecdba94c171094ba577dc845f481dfd19e049 --- daemon/call_interfaces.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/call_interfaces.c b/daemon/call_interfaces.c index 4ff6bfb45..ab657b0f5 100644 --- a/daemon/call_interfaces.c +++ b/daemon/call_interfaces.c @@ -749,7 +749,7 @@ const char *call_answer_ng(ng_command_ctx_t *ctx) { static bool monologue_has_tag(const struct call_monologue *ml, const str *tag) { if (!str_cmp_str(&ml->tag, tag)) return true; - for (__auto_type l = ml->tag_aliases.head; l; l = l->next) { + for (auto_iter(l, ml->tag_aliases.head); l; l = l->next) { if (!str_cmp_str(l->data, tag)) return true; }