Remove extraneous parenthesis

This causes a warning that breaks the build with clang.
This commit is contained in:
Travis Cross 2012-06-24 07:36:14 +00:00
parent 86df8b338e
commit 453b42e301
1 changed files with 1 additions and 1 deletions

View File

@ -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);
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");
ice_out(rtp_session, ice);