Module: Mesa Branch: master Commit: a9bc85f3b21e8d1b2640933b3c9e0a8fe3b4b9c6 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=a9bc85f3b21e8d1b2640933b3c9e0a8fe3b4b9c6
Author: Matt Turner <[email protected]> Date: Thu May 22 11:02:18 2014 -0700 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 08b1558..a55c48e 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]; _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
