[FFmpeg-cvslog] mem: fix typo in check for __ICC

Mans Rullgard git at videolan.org
Mon Sep 10 14:21:07 CEST 2012


ffmpeg | branch: master | Mans Rullgard <mans at mansr.com> | Sun Sep  9 22:47:15 2012 +0100| [8c5ed7a66a59a2eac4b776a44f8ea841b8e12418] | committer: Mans Rullgard

mem: fix typo in check for __ICC

Signed-off-by: Mans Rullgard <mans at mansr.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8c5ed7a66a59a2eac4b776a44f8ea841b8e12418
---

 libavutil/mem.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavutil/mem.h b/libavutil/mem.h
index 21fecc8..fb22206 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__)



More information about the ffmpeg-cvslog mailing list