Browse Source

MT#55283 fix for older compilers

Change-Id: I05e8d3bd5c4b9608f4896aecab189c8c344fb139
pull/1910/head
Richard Fuchs 10 months ago
parent
commit
4279ed6750
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      daemon/media_socket.c

+ 1
- 1
daemon/media_socket.c View File

@ -1274,7 +1274,7 @@ int get_consecutive_ports(socket_intf_list_q *out, unsigned int num_ports, unsig
ilog(LOG_DEBUG, ""); ilog(LOG_DEBUG, "");
*/ */
for (__auto_type l = log->list.head; l; l = l->next) {
for (auto_iter(l, log->list.head); l; l = l->next) {
if (out->length >= num_intfs) if (out->length >= num_intfs)
break; break;


Loading…
Cancel
Save