aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-21 19:27:51 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-21 19:27:51 +0000
commit682bd9a351430dc79f413ad6d8f1685a89324246 (patch)
treeb0d645b25dd6a6462c3c7fb0d97ecf9938592e22
parent1ba218f77cc626cb8ff941b889495a1739dcc4a6 (diff)
Fix a small error I made in my previous commit
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@89495 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 a9d79917e..7bae8ca51 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -2296,7 +2296,7 @@ static int is_our_turn(struct queue_ent *qe)
if (qe->parent->strategy == QUEUE_STRATEGY_RINGALL) {
if (option_debug)
- ast_log(LOG_DEBUG, "Even though there may be multiple members available, the strategy is ringall so only the head call is allowed in\n", avl);
+ ast_log(LOG_DEBUG, "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);