[asterisk-commits] file: branch file/bridging r111851 - /team/file/bridging/apps/app_confbridge.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri Mar 28 15:37:57 CDT 2008


Author: file
Date: Fri Mar 28 15:37:56 2008
New Revision: 111851

URL: http://svn.digium.com/view/asterisk?view=rev&rev=111851
Log:
Remove a cast that is not needed.

Modified:
    team/file/bridging/apps/app_confbridge.c

Modified: team/file/bridging/apps/app_confbridge.c
URL: http://svn.digium.com/view/asterisk/team/file/bridging/apps/app_confbridge.c?view=diff&rev=111851&r1=111850&r2=111851
==============================================================================
--- team/file/bridging/apps/app_confbridge.c (original)
+++ team/file/bridging/apps/app_confbridge.c Fri Mar 28 15:37:56 2008
@@ -156,7 +156,7 @@
 		if (ast_stream_and_wait(conference_bridge_user->chan, "conf-thereare", "")) {
 			return;
 		}
-		if (ast_say_number(conference_bridge_user->chan, conference_bridge->users - 1, "", conference_bridge_user->chan->language, (char*)NULL)) {
+		if (ast_say_number(conference_bridge_user->chan, conference_bridge->users - 1, "", conference_bridge_user->chan->language, NULL)) {
 			return;
 		}
 		if (ast_stream_and_wait(conference_bridge_user->chan, "conf-otherinparty", "")) {




More information about the asterisk-commits mailing list