From 17f05e52e750489c159541a178c363401c294249 Mon Sep 17 00:00:00 2001 From: Timothy Arceri Date: Thu, 20 Jul 2017 10:03:28 +1000 Subject: [PATCH] gallium/util: fix unused variable warning MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Reviewed-by: Grazvydas Ignotas Reviewed-by: Marek Olšák --- src/gallium/auxiliary/util/u_threaded_context.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/gallium/auxiliary/util/u_threaded_context.c b/src/gallium/auxiliary/util/u_threaded_context.c index cb9ea3a908d..a9fc6701739 100644 --- a/src/gallium/auxiliary/util/u_threaded_context.c +++ b/src/gallium/auxiliary/util/u_threaded_context.c @@ -1978,9 +1978,11 @@ static void tc_call_generate_mipmap(struct pipe_context *pipe, union tc_payload *payload) { struct tc_generate_mipmap *p = (struct tc_generate_mipmap *)payload; - bool result = pipe->generate_mipmap(pipe, p->res, p->format, p->base_level, - p->last_level, p->first_layer, - p->last_layer); + bool MAYBE_UNUSED result = pipe->generate_mipmap(pipe, p->res, p->format, + p->base_level, + p->last_level, + p->first_layer, + p->last_layer); assert(result); pipe_resource_reference(&p->res, NULL); } -- 2.30.2