From 33beb9df27c9e049030dbdc3a4be6588bd1fc3b5 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 15 Sep 2009 05:30:08 +0000 Subject: [PATCH] Patched to compile. --- code/qcommon/vm_x86.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/qcommon/vm_x86.c b/code/qcommon/vm_x86.c index 64c2ed44..3dccd3f7 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