From 9ea2a3af9c3e150e212f2bcbb23ae05b4779d702 Mon Sep 17 00:00:00 2001 From: Vinson Lee Date: Fri, 17 Sep 2010 23:59:23 -0700 Subject: [PATCH] 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 --- src/mesa/x86/common_x86.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mesa/x86/common_x86.c b/src/mesa/x86/common_x86.c index f763a3a..b70ee50 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; } -- 2.7.4