From: Mark Michelson Date: Wed, 21 Nov 2007 19:28:43 +0000 (+0000) Subject: Merged revisions 89495 via svnmerge from X-Git-Tag: 1.6.0-beta1~3^2~717 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ffa8035212311adc69fd342a0ad1ea336dbcd226;p=thirdparty%2Fasterisk.git 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: https://origsvn.digium.com/svn/asterisk/trunk@89496 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_queue.c b/apps/app_queue.c index 8985c27cd3..ec18fb457d 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);