mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 11:58:52 +00:00
chan->emulate_dtmf_duration is an unsigned int, not a signed int, so use %u instead of %d in the format string
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@77154 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -2369,7 +2369,7 @@ static struct ast_frame *__ast_read(struct ast_channel *chan, int dropaudio)
|
||||
chan->emulate_dtmf_duration = AST_MIN_DTMF_DURATION;
|
||||
} else
|
||||
chan->emulate_dtmf_duration = AST_DEFAULT_EMULATE_DTMF_DURATION;
|
||||
ast_log(LOG_DTMF, "DTMF begin emulation of '%c' with duration %d queued on %s\n", f->subclass, chan->emulate_dtmf_duration, chan->name);
|
||||
ast_log(LOG_DTMF, "DTMF begin emulation of '%c' with duration %u queued on %s\n", f->subclass, chan->emulate_dtmf_duration, chan->name);
|
||||
}
|
||||
} else {
|
||||
struct timeval now = ast_tvnow();
|
||||
|
Reference in New Issue
Block a user