summaryrefslogtreecommitdiff
path: root/libavutil/mem.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-02-25 18:25:49 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-02-25 18:25:49 +0000
commit4fa1f6cc5c94b3e53c8bd8cfcaa488ec8215f961 (patch)
tree4a4f995e841a67f928e516841c9a7563c73bbc83 /libavutil/mem.h
parent53d1bdbaed7fde46294a376f9e54a2add63c95f8 (diff)
Make code C conformant.
Originally committed as revision 12217 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 4898b085af..c39cce6629 100644
--- a/libavutil/mem.h
+++ b/libavutil/mem.h
@@ -36,7 +36,7 @@
#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
- #warning No align and asm directives, this might fail.
+// #warning No align and asm directives, this might fail.
#define DECLARE_ALIGNED(n,t,v) t v
#define DECLARE_ASM_CONST(n,t,v) static const t v
#endif