mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-18 17:41:53 +00:00
Remove extraneous parenthesis
This causes a warning that breaks the build with clang.
This commit is contained in:
parent
86df8b338e
commit
453b42e301
@ -702,7 +702,7 @@ static void handle_ice(switch_rtp_t *rtp_session, switch_rtp_ice_t *ice, void *d
|
|||||||
bytes = switch_stun_packet_length(rpacket);
|
bytes = switch_stun_packet_length(rpacket);
|
||||||
switch_socket_sendto(sock_output, from_addr, 0, (void *) rpacket, &bytes);
|
switch_socket_sendto(sock_output, from_addr, 0, (void *) rpacket, &bytes);
|
||||||
|
|
||||||
} else if ((packet->header.type == SWITCH_STUN_BINDING_ERROR_RESPONSE)) {
|
} else if (packet->header.type == SWITCH_STUN_BINDING_ERROR_RESPONSE) {
|
||||||
switch_core_session_t *session = switch_core_memory_pool_get_data(rtp_session->pool, "__session");
|
switch_core_session_t *session = switch_core_memory_pool_get_data(rtp_session->pool, "__session");
|
||||||
|
|
||||||
ice_out(rtp_session, ice);
|
ice_out(rtp_session, ice);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user