From 9aa8060dac63f46447245319e131249e276db62f Mon Sep 17 00:00:00 2001 From: Yann Ylavic Date: Mon, 29 Feb 2016 21:44:52 +0000 Subject: [PATCH] Avoid compiler (gcc-5.3.1) warning on unused variable. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1732952 13f79535-47bb-0310-9956-ffa450edef68 --- modules/http2/h2_worker.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/http2/h2_worker.c b/modules/http2/h2_worker.c index 23466e864f..ca6ce3a2f2 100644 --- a/modules/http2/h2_worker.c +++ b/modules/http2/h2_worker.c @@ -34,14 +34,13 @@ static void* APR_THREAD_FUNC execute(apr_thread_t *thread, void *wctx) { h2_worker *worker = (h2_worker *)wctx; - apr_status_t status; int sticky; while (!worker->aborted) { h2_task *task; /* Get a h2_task from the main workers queue. */ - status = worker->get_next(worker, worker->ctx, &task, &sticky); + worker->get_next(worker, worker->ctx, &task, &sticky); while (task) { h2_task_do(task, worker->io); -- 2.40.0