[asterisk-commits] rmudgett: branch 11 r372328 - /branches/11/res/res_rtp_asterisk.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Sep 5 12:35:22 CDT 2012
Author: rmudgett
Date: Wed Sep 5 12:35:20 2012
New Revision: 372328
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=372328
Log:
Fix coding guidelines issue with a recent commit.
Modified:
branches/11/res/res_rtp_asterisk.c
Modified: branches/11/res/res_rtp_asterisk.c
URL: http://svnview.digium.com/svn/asterisk/branches/11/res/res_rtp_asterisk.c?view=diff&rev=372328&r1=372327&r2=372328
==============================================================================
--- branches/11/res/res_rtp_asterisk.c (original)
+++ branches/11/res/res_rtp_asterisk.c Wed Sep 5 12:35:20 2012
@@ -2799,8 +2799,7 @@
}
/* If the payload coming in is not one of the negotiated ones then send it to the core, this will cause formats to change and the bridge to break */
- if (ast_rtp_codecs_find_payload_code(ast_rtp_instance_get_codecs(instance1),bridged_payload) == -1)
- {
+ if (ast_rtp_codecs_find_payload_code(ast_rtp_instance_get_codecs(instance1), bridged_payload) == -1) {
ast_debug(1, "Unsupported payload type received \n");
return -1;
}
More information about the asterisk-commits
mailing list