From: Yann Diorcet Date: Mon, 13 May 2013 13:12:14 +0000 (+0200) Subject: Remove useless arguement in linphone_core_upnp_available X-Git-Url: http://sjero.net/git/?p=linphone;a=commitdiff_plain;h=02b7c282a153ba96b3f82d5f38a06c27cc207518 Remove useless arguement in linphone_core_upnp_available --- diff --git a/coreapi/linphonecore.c b/coreapi/linphonecore.c index 12c8880b..02db3b54 100644 --- a/coreapi/linphonecore.c +++ b/coreapi/linphonecore.c @@ -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 diff --git a/coreapi/linphonecore.h b/coreapi/linphonecore.h index 5ae73cc4..67d4fb25 100644 --- a/coreapi/linphonecore.h +++ b/coreapi/linphonecore.h @@ -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