summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2003-07-08 13:41:30 +0000
committerMark Spencer <markster@digium.com>2003-07-08 13:41:30 +0000
commit3b84a3f8a41b58ada1c59aa75837ebe6ab96560a (patch)
tree49ac7fce2d75089f64d02b1ab2161be7df24ef2d /apps
parent7de3a7fcb09bda59fb19c5c310f7fdef1535bedf (diff)
Clarify another area
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1166 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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 5a0f5b71e..58d13d44d 100755
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -1195,7 +1195,7 @@ static int manager_queues_status( struct mansession *s, struct message *m )
"CallerID: %s\r\n"
"Wait: %ld\r\n"
"\r\n",
- q->name, pos++, qe->chan->name, qe->chan->callerid ? qe->chan->callerid : "", now - qe->start);
+ q->name, pos++, qe->chan->name, (qe->chan->callerid ? qe->chan->callerid : ""), now - qe->start);
ast_pthread_mutex_unlock(&q->lock);
q = q->next;
}