mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Fix format specifier to print out an unsigned long long.
Yep, it's even ifdefed out code. But it made it to the RR list... (closes issue #14726) Reported by: lmadsen git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@207155 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -8391,7 +8391,7 @@ static struct ast_channel *dahdi_request(const char *type, int format, void *dat
|
||||
if (roundrobin)
|
||||
round_robin[x] = p;
|
||||
#if 0
|
||||
ast_verbose("name = %s, %d, %d, %d\n",p->owner ? p->owner->name : "<none>", p->channel, channelmatch, groupmatch);
|
||||
ast_verbose("name = %s, %d, %d, %llu\n",p->owner ? p->owner->name : "<none>", p->channel, channelmatch, groupmatch);
|
||||
#endif
|
||||
|
||||
if (p && available(p, channelmatch, groupmatch, &busy, &channelmatched, &groupmatched)) {
|
||||
|
Reference in New Issue
Block a user