From: Joshua Colp Date: Fri, 27 Mar 2009 14:18:40 +0000 (+0000) Subject: Remove a cast that is not needed. X-Git-Tag: 11.0.0-beta1~5170 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=39a09b0af95317e1fa9660435cf35595cc764a52;p=thirdparty%2Fasterisk.git Remove a cast that is not needed. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@184639 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/bridges/bridge_softmix.c b/bridges/bridge_softmix.c index 73ac296604..953dbb45af 100644 --- a/bridges/bridge_softmix.c +++ b/bridges/bridge_softmix.c @@ -199,7 +199,7 @@ static int softmix_bridge_poke(struct ast_bridge *bridge, struct ast_bridge_chan /*! \brief Function which acts as the mixing thread */ static int softmix_bridge_thread(struct ast_bridge *bridge) { - int timingfd = (unsigned short)(unsigned long)bridge->bridge_pvt; + int timingfd = (unsigned long)bridge->bridge_pvt; ast_timer_set_rate(timingfd, (1000 / SOFTMIX_INTERVAL));