summaryrefslogtreecommitdiff
path: root/libavutil/mem.h
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2012-09-09 22:47:15 +0100
committerMans Rullgard <mans@mansr.com>2012-09-10 00:07:26 +0100
commit8c5ed7a66a59a2eac4b776a44f8ea841b8e12418 (patch)
tree93c2613c27af521e2303dd0463859a6536402114 /libavutil/mem.h
parentf181662db9cc15e99497ff1e6a9b81bed1dc7ee3 (diff)
mem: fix typo in check for __ICC
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavutil/mem.h')
-rw-r--r--libavutil/mem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/mem.h b/libavutil/mem.h
index 21fecc86dc..fb222061f7 100644
--- a/libavutil/mem.h
+++ b/libavutil/mem.h
@@ -37,7 +37,7 @@
*/
-#if defined(__ICC) && _ICC < 1200 || defined(__SUNPRO_C)
+#if defined(__ICC) && __ICC < 1200 || defined(__SUNPRO_C)
#define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v
#define DECLARE_ASM_CONST(n,t,v) const t __attribute__ ((aligned (n))) v
#elif defined(__TI_COMPILER_VERSION__)