]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
whitespace fix
authorJeff Peeler <jpeeler@digium.com>
Fri, 26 Jun 2009 19:48:25 +0000 (19:48 +0000)
committerJeff Peeler <jpeeler@digium.com>
Fri, 26 Jun 2009 19:48:25 +0000 (19:48 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@203713 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_dahdi.c

index 8f431684c345b3ca7efabeea902e8813acd1617f..5625c0312fc9775590bf723d52ab8cc8622e43ca 100644 (file)
@@ -5535,11 +5535,11 @@ static struct ast_frame *dahdi_handle_event(struct ast_channel *ast)
                                        }
                                }
                        }
-                       /* Added more log_debug information below to provide a better indication of what is going on */
-                       ast_debug(1, "Polarity Reversal event occured - DEBUG 2: channel %d, state %d, pol= %d, aonp= %d, honp= %d, pdelay= %d, tv= %d\n", p->channel, ast->_state, p->polarity, p->answeronpolarityswitch, p->hanguponpolarityswitch, p->polarityonanswerdelay, ast_tvdiff_ms(ast_tvnow(), p->polaritydelaytv) );
-                       break;
-               default:
-                       ast_debug(1, "Dunno what to do with event %d on channel %d\n", res, p->channel);
+               /* Added more log_debug information below to provide a better indication of what is going on */
+               ast_debug(1, "Polarity Reversal event occured - DEBUG 2: channel %d, state %d, pol= %d, aonp= %d, honp= %d, pdelay= %d, tv= %d\n", p->channel, ast->_state, p->polarity, p->answeronpolarityswitch, p->hanguponpolarityswitch, p->polarityonanswerdelay, ast_tvdiff_ms(ast_tvnow(), p->polaritydelaytv) );
+               break;
+       default:
+               ast_debug(1, "Dunno what to do with event %d on channel %d\n", res, p->channel);
        }
        return &p->subs[idx].f;
 }