summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkhali <khali>2010-11-24 20:03:01 +0000
committerkhali <khali>2010-11-24 20:03:01 +0000
commit505cfe74332ada4a51eef047ad0001625fc2730d (patch)
tree1e740e22fa8feead6a57e384cd8e12c95d7b8f5a
parentd56a04f22bfca789e0b116aef9d34a09b7ae7ca0 (diff)
downloaddmidecode-505cfe74332ada4a51eef047ad0001625fc2730d.tar.gz
Fix CPU flags mask (DMI type 4).
-rw-r--r--dmidecode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dmidecode.c b/dmidecode.c
index 01ba8ac..617704f 100644
--- a/dmidecode.c
+++ b/dmidecode.c
@@ -1046,7 +1046,7 @@ static void dmi_processor_id(u8 type, const u8 *p, const char *version, const ch
edx = DWORD(p + 4);
printf("%sFlags:", prefix);
- if ((edx & 0xFFEFFBFF) == 0)
+ if ((edx & 0xBFEFFBFF) == 0)
printf(" None\n");
else
{