make ast_waitstream_* return value compatible with platforms that use unsigned char by default (bug #4455)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5846 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2005-06-05 15:04:43 +00:00
parent 325602ff2b
commit 7a2d5cbb3e
6 changed files with 18 additions and 16 deletions

2
pbx.c
View File

@@ -2238,7 +2238,7 @@ int ast_exec_extension(struct ast_channel *c, const char *context, const char *e
static int __ast_pbx_run(struct ast_channel *c)
{
int firstpass = 1;
char digit;
int digit;
char exten[256];
int pos;
int waittime;