Skip to content

Commit

Permalink
missed an auto
Browse files Browse the repository at this point in the history
  • Loading branch information
p-avital committed Aug 7, 2023
1 parent 2c3677a commit e002243
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transport/multicast/link/rx.c
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ int8_t _z_multicast_handle_transport_message(_z_transport_multicast_t *ztm, _z_t
uint16_t mapping = entry->_peer_id;
size_t len = _z_vec_len(&t_msg->_body._frame._messages);
for (size_t i = 0; i < len; i++) {
__auto_type zm = _z_network_message_vec_get(&t_msg->_body._frame._messages, i);
_z_network_message_t *zm = _z_network_message_vec_get(&t_msg->_body._frame._messages, i);
_z_msg_fix_mapping(zm, mapping);
_z_handle_zenoh_message(ztm->_session, zm, mapping);
}
Expand Down

0 comments on commit e002243

Please sign in to comment.