summaryrefslogtreecommitdiff
path: root/libavutil/mem.h
diff options
context:
space:
mode:
authorEddie Pang <eddpang@gmail.com>2008-02-25 18:32:55 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-02-25 18:32:55 +0000
commita02dd7ebdd0b695184d09a898173ca59be0dec6c (patch)
treec557e5ab32ac2f0ff344efb0fcdb575b17cbe4f8 /libavutil/mem.h
parent4fa1f6cc5c94b3e53c8bd8cfcaa488ec8215f961 (diff)
Fix MSVC identification, patch by Eddie Pang.
Originally committed as revision 12218 to svn://svn.ffmpeg.org/ffmpeg/trunk
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 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