]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
src/switch_utils.c cleanup
authorBrian West <brian@freeswitch.org>
Sat, 19 Jan 2008 21:59:06 +0000 (21:59 +0000)
committerBrian West <brian@freeswitch.org>
Sat, 19 Jan 2008 21:59:06 +0000 (21:59 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7302 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/switch_utils.c

index c97a2782b4987bccb85156c9ee1781440e1550f7..6b4d10c7dccae080df21b067e06ac29c77db2317 100644 (file)
@@ -1017,7 +1017,7 @@ SWITCH_DECLARE(char *) switch_escape_char(switch_memory_pool_t *pool, char *in,
 static char unescape_char(char escaped)
 {
        char unescaped;
-       printf("WTF [%c]\n", escaped);
+
        switch (escaped) {
                case 'n':
                        unescaped = '\n';