aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-21 19:28:43 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-21 19:28:43 +0000
commitc6d5070e7d7aef74bb2e46585ee9dc1bcce3db1b (patch)
treee8292161de9c8e5afc3fcd6fc2c3685d1b941fbe
parentceb701426d323fc7c9cc5860352c641e82813827 (diff)
Merged revisions 89495 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r89495 | mmichelson | 2007-11-21 13:27:51 -0600 (Wed, 21 Nov 2007) | 3 lines Fix a small error I made in my previous commit ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@89496 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--apps/app_queue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index 8985c27cd..ec18fb457 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -2456,7 +2456,7 @@ static int is_our_turn(struct queue_ent *qe)
ch = qe->parent->head;
if (qe->parent->strategy == QUEUE_STRATEGY_RINGALL) {
- ast_debug(1, "Even though there may be multiple members available, the strategy is ringall so only the head call is allowed in\n", avl);
+ ast_debug(1, "Even though there may be multiple members available, the strategy is ringall so only the head call is allowed in\n");
avl = 1;
} else {
struct ao2_iterator mem_iter = ao2_iterator_init(qe->parent->members, 0);