diff options
author | Eddie Pang <eddpang@gmail.com> | 2008-02-25 18:32:55 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-25 18:32:55 +0000 |
commit | a02dd7ebdd0b695184d09a898173ca59be0dec6c (patch) | |
tree | c557e5ab32ac2f0ff344efb0fcdb575b17cbe4f8 /libavutil | |
parent | 4fa1f6cc5c94b3e53c8bd8cfcaa488ec8215f961 (diff) | |
download | ffmpeg-a02dd7ebdd0b695184d09a898173ca59be0dec6c.tar.gz |
Fix MSVC identification, patch by Eddie Pang.
Originally committed as revision 12218 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/mem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/mem.h b/libavutil/mem.h index c39cce6629..7bf707001b 100644 --- a/libavutil/mem.h +++ b/libavutil/mem.h @@ -32,7 +32,7 @@ #elif defined(__GNUC__) #define DECLARE_ALIGNED(n,t,v) t v __attribute__ ((aligned (n))) #define DECLARE_ASM_CONST(n,t,v) static const t v attribute_used __attribute__ ((aligned (n))) -#elif defined(_MSVC) +#elif defined(_MSC_VER) #define DECLARE_ALIGNED(n,t,v) __declspec(align(n)) t v #define DECLARE_ASM_CONST(n,t,v) __declspec(align(n)) static const t v #else |