projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
249eef4
)
Fix printf to match int type (bug #247)
author
Mark Spencer
<markster@digium.com>
Sat, 27 Sep 2003 02:24:53 +0000
(
02:24
+0000)
committer
Mark Spencer
<markster@digium.com>
Sat, 27 Sep 2003 02:24:53 +0000
(
02:24
+0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1563
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
apps/app_queue.c
patch
|
blob
|
history
diff --git
a/apps/app_queue.c
b/apps/app_queue.c
index
60afb6d
..
17feca7
100755
(executable)
--- a/
apps/app_queue.c
+++ b/
apps/app_queue.c
@@
-1383,7
+1383,7
@@
static int queues_show(int fd, int argc, char **argv)
pos = 1;
ast_cli(fd, " Callers: \n");
for (qe = q->head; qe; qe = qe->next)
- ast_cli(fd, " %d. %s (wait: %d:%2.2d)\n", pos++, qe->chan->name,
+ ast_cli(fd, " %d. %s (wait: %ld:%2.2ld)\n", pos++, qe->chan->name,
(now - qe->start) / 60, (now - qe->start) % 60);
} else
ast_cli(fd, " No Callers\n");