aboutsummaryrefslogtreecommitdiffstats
path: root/code/qcommon
diff options
context:
space:
mode:
Diffstat (limited to 'code/qcommon')
-rw-r--r--code/qcommon/vm_x86.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/code/qcommon/vm_x86.c b/code/qcommon/vm_x86.c
index 64c2ed4..3dccd3f 100644
--- a/code/qcommon/vm_x86.c
+++ b/code/qcommon/vm_x86.c
@@ -178,8 +178,7 @@ _asm {
#if defined(__MINGW32__) || defined(MACOS_X) // _ is prepended to compiled symbols
#define CMANGVAR(sym) "_"#sym
#define CMANGFUNC(sym) "_"#sym
-#else
-#if defined(__ICC) && (__ICC >= 1000)
+#elif defined(__ICC) && (__ICC >= 1000)
#define CMANGVAR(sym) #sym".0"
#define CMANGFUNC(sym) #sym
#else