mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-16 23:08:32 +00:00
don't use '%i' at all, since we have no current use cases that need non base-10 parsing (bug #4110)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5533 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -219,7 +219,7 @@ static int phone_digit(struct ast_channel *ast, char digit)
|
||||
ast_log(LOG_WARNING, "Unknown digit '%c'\n", digit);
|
||||
return -1;
|
||||
}
|
||||
ast_log(LOG_NOTICE, "Dialed %i\n", outdigit);
|
||||
ast_log(LOG_NOTICE, "Dialed %d\n", outdigit);
|
||||
ioctl(p->fd, PHONE_PLAY_TONE, outdigit);
|
||||
p->lastformat = -1;
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user