Author: hyperion Date: Sat Oct 25 12:36:53 2008 New Revision: 36956
URL: http://svn.reactos.org/svn/reactos?rev=36956&view=rev Log: I did not, in fact, test my commit
Modified: trunk/reactos/lib/3rdparty/mingw/cpu_features.c
Modified: trunk/reactos/lib/3rdparty/mingw/cpu_features.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/3rdparty/mingw/cpu_feat... ============================================================================== --- trunk/reactos/lib/3rdparty/mingw/cpu_features.c [iso-8859-1] (original) +++ trunk/reactos/lib/3rdparty/mingw/cpu_features.c [iso-8859-1] Sat Oct 25 12:36:53 2008 @@ -60,7 +60,7 @@ : "=&r" (eax), "=&r" (ebx) : "i" (0x00200000));
- return ((eax ^ ebx) & 0x00200000; + return (eax ^ ebx) & 0x00200000; #elif defined(_MSC_VER) unsigned int retval;