From fdd5d2d822c159b6468db7c4d1f41496397cafa6 Mon Sep 17 00:00:00 2001 From: Brian West Date: Sun, 4 Mar 2007 01:46:08 +0000 Subject: [PATCH] fix comments git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4440 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/switch_channel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } }