From 0a0ee507a2628e9c41d0d44e787600ad94a5658a Mon Sep 17 00:00:00 2001 From: Brian West Date: Sat, 19 Jan 2008 21:59:06 +0000 Subject: [PATCH] src/switch_utils.c cleanup git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7302 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/switch_utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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';