]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix comments
authorBrian West <brian@freeswitch.org>
Sun, 4 Mar 2007 01:46:08 +0000 (01:46 +0000)
committerBrian West <brian@freeswitch.org>
Sun, 4 Mar 2007 01:46:08 +0000 (01:46 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4440 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/switch_channel.c

index 7e0e7fe88cfef2c4f6237fc6b5379e1d4d1cd5e3..db49b557accc694bcf57e638de05d0bec7d7e171 100644 (file)
@@ -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);
                }
        }