mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Remove unused variable that snuck in during development.
Approved by: zml (mentor)
This commit is contained in:
parent
242ed5d96c
commit
033459c8f1
1 changed files with 1 additions and 2 deletions
|
|
@ -220,11 +220,10 @@ taskqueue_unblock(struct taskqueue *queue)
|
|||
static void
|
||||
taskqueue_run(struct taskqueue *queue, struct task **tpp)
|
||||
{
|
||||
struct task *task, *running;
|
||||
struct task *task;
|
||||
int pending;
|
||||
|
||||
mtx_assert(&queue->tq_mutex, MA_OWNED);
|
||||
running = NULL;
|
||||
while (STAILQ_FIRST(&queue->tq_queue)) {
|
||||
/*
|
||||
* Carefully remove the first task from the queue and
|
||||
|
|
|
|||
Loading…
Reference in a new issue