From: Vinson Lee Date: Sat, 18 Sep 2010 06:59:23 +0000 (-0700) Subject: x86: Silence unused variable warning on Mac OS X. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9ea2a3af9c3e150e212f2bcbb23ae05b4779d702;p=mesa.git x86: Silence unused variable warning on Mac OS X. Silences the following GCC warning on Mac OS X. x86/common_x86.c:58: warning: 'detection_debug' defined but not used --- diff --git a/src/mesa/x86/common_x86.c b/src/mesa/x86/common_x86.c index f763a3aa8a4..b70ee5084dd 100644 --- a/src/mesa/x86/common_x86.c +++ b/src/mesa/x86/common_x86.c @@ -331,4 +331,6 @@ _mesa_get_x86_features(void) #endif #endif /* USE_X86_ASM */ + + (void) detection_debug; }