Remove useless arguement in linphone_core_upnp_available

This commit is contained in:
Yann Diorcet 2013-05-13 15:12:14 +02:00
parent fd98c1e057
commit ac0afacabd
2 changed files with 2 additions and 3 deletions

View file

@ -4190,7 +4190,7 @@ const char * linphone_core_get_stun_server(const LinphoneCore *lc){
return lc->net_conf.stun_server;
}
bool_t linphone_core_upnp_available(const LinphoneCore *lc){
bool_t linphone_core_upnp_available(){
#ifdef BUILD_UPNP
return TRUE;
#else

View file

@ -1199,10 +1199,9 @@ const char * linphone_core_get_stun_server(const LinphoneCore *lc);
* @ingroup network_parameters
* Return the availability of uPnP.
*
* @param lc #LinphoneCore
* @return true if uPnP is available otherwise return false.
*/
bool_t linphone_core_upnp_available(const LinphoneCore *lc);
bool_t linphone_core_upnp_available();
/**
* @ingroup network_parameters