From 537d04615d4e4c41ba4959445d8bd1bd22763d50 Mon Sep 17 00:00:00 2001 From: Gert Wollny Date: Thu, 16 Nov 2017 16:09:55 +0100 Subject: [PATCH] gallium/aux/os/os_thread.h: Silence -Wunused-param. With --disable-debug a parameter is not used. Silence this warning by fake-using it. Signed-off-by: Gert Wollny Reviewed-by: Brian Paul --- src/gallium/auxiliary/os/os_thread.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gallium/auxiliary/os/os_thread.h b/src/gallium/auxiliary/os/os_thread.h index d9c685922a5..f2629c5ffe5 100644 --- a/src/gallium/auxiliary/os/os_thread.h +++ b/src/gallium/auxiliary/os/os_thread.h @@ -56,6 +56,8 @@ __pipe_mutex_assert_locked(mtx_t *mutex) assert(ret == thrd_busy); if (ret == thrd_success) mtx_unlock(mutex); +#else + (void)mutex; #endif }