diff options
author | Vinson Lee <vlee@vmware.com> | 2010-09-17 23:59:23 -0700 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-09-17 23:59:23 -0700 |
commit | 9ea2a3af9c3e150e212f2bcbb23ae05b4779d702 (patch) | |
tree | a966052d8634a41458209e4ffbcfa5f33b46cf70 /src/mesa | |
parent | c32bac57ed445e48856d74113364287ed6e5cdd4 (diff) |
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
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/x86/common_x86.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/x86/common_x86.c b/src/mesa/x86/common_x86.c index f763a3aa8a..b70ee5084d 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; } |