summaryrefslogtreecommitdiff
path: root/pbx.c
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2005-06-05 15:04:43 +0000
committerKevin P. Fleming <kpfleming@digium.com>2005-06-05 15:04:43 +0000
commit7a2d5cbb3e69140e3077c14ce045248e18dd8293 (patch)
treefbd0ef10bda1aa148ddde9901fa844bc6fc03dd4 /pbx.c
parent325602ff2b764e72f89653f4f93fb4dd4bc7835c (diff)
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
Diffstat (limited to 'pbx.c')
-rwxr-xr-xpbx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pbx.c b/pbx.c
index 11df38845..10d8dc0a6 100755
--- a/pbx.c
+++ b/pbx.c
@@ -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;