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;