diff options
author | Matt Turner <[email protected]> | 2014-05-22 11:02:18 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2014-05-22 11:02:36 -0700 |
commit | a9bc85f3b21e8d1b2640933b3c9e0a8fe3b4b9c6 (patch) | |
tree | e4e44b525aff27687c5be4b90e1f8702ca26cf77 /src/mesa/x86 | |
parent | f935dfc022f2481b3ed6ecfccafef37ce71776f0 (diff) |
mesa/x86: Brown bag fix for undeclared variable.
Diffstat (limited to 'src/mesa/x86')
-rw-r--r-- | src/mesa/x86/common_x86.c | 2 |
1 files changed, 1 insertions, 1 deletions
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]; |