Skip to content

Commit

Permalink
MT#61371 compile fix for older gcc
Browse files Browse the repository at this point in the history
Change-Id: Ia2a0b06c80bbafeb1668d62957036cfca771e07b
  • Loading branch information
rfuchs committed Nov 1, 2024
1 parent eb9d4ed commit 70392c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daemon/call_interfaces.c
Original file line number Diff line number Diff line change
Expand Up @@ -2572,7 +2572,7 @@ static void ng_stats_monologue(ng_command_ctx_t *ctx, parser_arg dict, const str
parser->dict_add_str(sub, "via-branch", &ml->viabranch);
if (ml->tag_aliases.length) {
parser_arg aliases = parser->dict_add_list(sub, "tag-aliases");
for (__auto_type alias = ml->tag_aliases.head; alias; alias = alias->next)
for (auto_iter(alias, ml->tag_aliases.head); alias; alias = alias->next)
parser->list_add_str_dup(aliases, alias->data);
}
if (ml->label.s)
Expand Down

0 comments on commit 70392c4

Please sign in to comment.