fix comments
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4440 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
d863ae5783
commit
fdd5d2d822
|
@ -667,9 +667,9 @@ SWITCH_DECLARE(switch_channel_state_t) switch_channel_perform_set_state(switch_c
|
|||
state_names[last_state],
|
||||
state_names[state]);
|
||||
|
||||
//we won't tolerate an invalid state change so we can make sure we are as robust as a nice cup of dark coffee!
|
||||
/* we won't tolerate an invalid state change so we can make sure we are as robust as a nice cup of dark coffee! */
|
||||
if (channel->state < CS_HANGUP) {
|
||||
// not cool lets crash this bad boy and figure out wtf is going on
|
||||
/* not cool lets crash this bad boy and figure out wtf is going on */
|
||||
assert(0);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue