From 384cece98f2dddbdff4ee34ee2edbdf4f2c9b77b Mon Sep 17 00:00:00 2001 From: "KJK::Hyperion" Date: Sat, 25 Oct 2008 17:36:53 +0000 Subject: [PATCH] I did not, in fact, test my commit svn path=/trunk/; revision=36956 --- reactos/lib/3rdparty/mingw/cpu_features.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/lib/3rdparty/mingw/cpu_features.c b/reactos/lib/3rdparty/mingw/cpu_features.c index 32983e11f24..b83e6f4a62d 100644 --- a/reactos/lib/3rdparty/mingw/cpu_features.c +++ b/reactos/lib/3rdparty/mingw/cpu_features.c @@ -60,7 +60,7 @@ unsigned int __detect_cpuid (void) : "=&r" (eax), "=&r" (ebx) : "i" (0x00200000)); - return ((eax ^ ebx) & 0x00200000; + return (eax ^ ebx) & 0x00200000; #elif defined(_MSC_VER) unsigned int retval;