summaryrefslogtreecommitdiff
path: root/bridges/bridge_simple.c
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2013-01-25 19:29:04 +0000
committerRichard Mudgett <rmudgett@digium.com>2013-01-25 19:29:04 +0000
commit7bb540dc8099b000ffef973dca8a0dd701fc47d6 (patch)
treec056c56406eef147d92eef39199ee16b37d22d76 /bridges/bridge_simple.c
parent6300c37152081447cc6c034a580db344e2f10bea (diff)
More trivial bridge code cleanup.
* Breaking long lines * Word wrapping comment blocks. * Removing redundant initializers. * Debug message wording. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@380108 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'bridges/bridge_simple.c')
-rw-r--r--bridges/bridge_simple.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/bridges/bridge_simple.c b/bridges/bridge_simple.c
index 93864e6de..947983bae 100644
--- a/bridges/bridge_simple.c
+++ b/bridges/bridge_simple.c
@@ -47,7 +47,8 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
static int simple_bridge_join(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel)
{
- struct ast_channel *c0 = AST_LIST_FIRST(&bridge->channels)->chan, *c1 = AST_LIST_LAST(&bridge->channels)->chan;
+ struct ast_channel *c0 = AST_LIST_FIRST(&bridge->channels)->chan;
+ struct ast_channel *c1 = AST_LIST_LAST(&bridge->channels)->chan;
/* If this is the first channel we can't make it compatible... unless we make it compatible with itself O.o */
if (AST_LIST_FIRST(&bridge->channels) == AST_LIST_LAST(&bridge->channels)) {