From a9bc85f3b21e8d1b2640933b3c9e0a8fe3b4b9c6 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Thu, 22 May 2014 11:02:18 -0700 Subject: [PATCH] mesa/x86: Brown bag fix for undeclared variable. --- src/mesa/x86/common_x86.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/x86/common_x86.c b/src/mesa/x86/common_x86.c index 08b1558975a..a55c48ed137 100644 --- a/src/mesa/x86/common_x86.c +++ b/src/mesa/x86/common_x86.c @@ -226,7 +226,7 @@ _mesa_get_x86_features(void) _mesa_debug(NULL, "CPUID not detected\n"); } else { - GLuint cpu_features; + GLuint cpu_features, cpu_features_ecx; GLuint cpu_ext_features; GLuint cpu_ext_info; char cpu_vendor[13]; -- 2.30.2