dect
/
asterisk
Archived
13
0
Fork 0

suppress warnings introduced by putting states in an enum

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@40489 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
russell 2006-08-19 03:50:15 +00:00
parent 6d7f326883
commit 0b95b65ab9
1 changed files with 2 additions and 0 deletions

View File

@ -1564,6 +1564,8 @@ int ast_answer(struct ast_channel *chan)
case AST_STATE_UP:
ast_cdr_answer(chan->cdr);
break;
default:
break;
}
ast_channel_unlock(chan);
return res;