From: Brian West Date: Sun, 4 Mar 2007 01:46:08 +0000 (+0000) Subject: fix comments X-Git-Tag: v1.0-beta1~971 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fdd5d2d822c159b6468db7c4d1f41496397cafa6;p=thirdparty%2Ffreeswitch.git fix comments git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4440 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/switch_channel.c b/src/switch_channel.c index 7e0e7fe88c..db49b557ac 100644 --- a/src/switch_channel.c +++ b/src/switch_channel.c @@ -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); } }