[asterisk-commits] jpeeler: branch 1.4 r207155 - /branches/1.4/channels/chan_dahdi.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Jul 17 14:36:24 CDT 2009
Author: jpeeler
Date: Fri Jul 17 14:36:19 2009
New Revision: 207155
URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=207155
Log:
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
Modified:
branches/1.4/channels/chan_dahdi.c
Modified: branches/1.4/channels/chan_dahdi.c
URL: http://svn.asterisk.org/svn-view/asterisk/branches/1.4/channels/chan_dahdi.c?view=diff&rev=207155&r1=207154&r2=207155
==============================================================================
--- branches/1.4/channels/chan_dahdi.c (original)
+++ branches/1.4/channels/chan_dahdi.c Fri Jul 17 14:36:19 2009
@@ -8391,7 +8391,7 @@
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)) {
More information about the asterisk-commits
mailing list