src/switch_utils.c cleanup

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7302 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Brian West 2008-01-19 21:59:06 +00:00
parent 6e1c32e099
commit 0a0ee507a2
1 changed files with 1 additions and 1 deletions

View 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';