From: Michael Jerris Date: Mon, 19 Mar 2007 16:03:49 +0000 (+0000) Subject: dont return value on void function X-Git-Tag: v1.0-beta1~763 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0bab5fe86a13f4f24fc149027211deaf861f9faf;p=thirdparty%2Ffreeswitch.git dont return value on void function git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4658 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/endpoints/mod_sofia/mod_sofia.c b/src/mod/endpoints/mod_sofia/mod_sofia.c index 419a2cc186..9923619043 100644 --- a/src/mod/endpoints/mod_sofia/mod_sofia.c +++ b/src/mod/endpoints/mod_sofia/mod_sofia.c @@ -3058,7 +3058,7 @@ static void sip_i_state(int status, switch_channel_set_variable(channel, SWITCH_ENDPOINT_DISPOSITION_VARIABLE, "RECEIVED_3PCC"); if (tech_choose_port(tech_pvt) != SWITCH_STATUS_SUCCESS) { - return status; + return; } set_local_sdp(tech_pvt, NULL, 0, NULL, 0);