From: Brian West Date: Sat, 19 Jan 2008 21:59:06 +0000 (+0000) Subject: src/switch_utils.c cleanup X-Git-Tag: v1.0-rc1~606 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0a0ee507a2628e9c41d0d44e787600ad94a5658a;p=thirdparty%2Ffreeswitch.git src/switch_utils.c cleanup git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7302 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/switch_utils.c b/src/switch_utils.c index c97a2782b4..6b4d10c7dc 100644 --- a/src/switch_utils.c +++ b/src/switch_utils.c @@ -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';