]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix a small error I made in my previous commit
authorMark Michelson <mmichelson@digium.com>
Wed, 21 Nov 2007 19:27:51 +0000 (19:27 +0000)
committerMark Michelson <mmichelson@digium.com>
Wed, 21 Nov 2007 19:27:51 +0000 (19:27 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@89495 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_queue.c

index a9d79917e12f8e720136118e8c32d570576bb111..7bae8ca51bc9f8608be6fabae495c60428f0702e 100644 (file)
@@ -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);