]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
sys_shared: Fix malformed ifdefs breaking 32 bit builds
authorcloudwalk <cloudwalk@d7cf8633-e32d-0410-b094-e92efae38249>
Thu, 17 Sep 2020 05:18:03 +0000 (05:18 +0000)
committercloudwalk <cloudwalk@d7cf8633-e32d-0410-b094-e92efae38249>
Thu, 17 Sep 2020 05:18:03 +0000 (05:18 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12928 d7cf8633-e32d-0410-b094-e92efae38249

sys_shared.c

index c3b4bab73914425ff91137d422d9beb7504cbad4..39c50682347a206ecec75b00e1a42c1a29b57fa6 100644 (file)
@@ -553,7 +553,7 @@ void Sys_ProvideSelfFD(void)
 static int CPUID_Features(void)
 {
        int features = 0;
-# if defined((__GNUC__) || (__clang__) || (__TINYC__)) && defined(__i386__)
+# if (defined(__GNUC__) || defined(__clang__) || defined(__TINYC__)) && defined(__i386__)
         __asm__ (
 "        movl    %%ebx,%%edi\n"
 "        xorl    %%eax,%%eax                                           \n"