MT#55283 use auto_iter for const queue

Works around gcc < 12 being stupid

Change-Id: Ifc1189928039b8f8a009343062561ba59ec4a20d
pull/1876/head
Richard Fuchs 1 year ago
parent 38985b96df
commit 1aca54ab01

@ -364,7 +364,7 @@ static void sdp_manipulations_add(GString *s, const struct sdp_manipulations * s
const str_q * q_ptr = &sdp_manipulations->add_commands;
for (__auto_type l = q_ptr->head; l; l = l->next)
for (auto_iter(l, q_ptr->head); l; l = l->next)
{
str * attr_value = l->data;
g_string_append_len(s, "a=", 2);

Loading…
Cancel
Save