aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-09-27 02:24:53 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-09-27 02:24:53 +0000
commit31022bad9db782ceaa418eff60cdbbdc35e8344c (patch)
tree499442a8814cf448061f9e60a7c26635519837c2 /apps
parent464ddce136db0f28a022b97a3bc6be2b58ce1f44 (diff)
Fix printf to match int type (bug #247)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1563 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rwxr-xr-xapps/app_queue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index 60afb6d23..17feca7ac 100755
--- 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");