summaryrefslogtreecommitdiff
path: root/libavcodec/dsputil.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2007-06-16 11:44:54 +0000
committerMåns Rullgård <mans@mansr.com>2007-06-16 11:44:54 +0000
commit119e2c0056d88d08069545879fdbf236e97682cd (patch)
tree67903ac4e4de8b698d69f4d8bfdf8cfabc1c8a68 /libavcodec/dsputil.c
parenta1bee08046ca6f30ea8ea4dd9e7c31c178f4fcfd (diff)
kill a warning on 64-bit machines
Originally committed as revision 9331 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r--libavcodec/dsputil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c
index cac2045a4e..e53d4c1ea9 100644
--- a/libavcodec/dsputil.c
+++ b/libavcodec/dsputil.c
@@ -3821,7 +3821,7 @@ int ff_check_alignment(void){
static int did_fail=0;
DECLARE_ALIGNED_16(int, aligned);
- if((int)&aligned & 15){
+ if((long)&aligned & 15){
if(!did_fail){
#if defined(HAVE_MMX) || defined(HAVE_ALTIVEC)
av_log(NULL, AV_LOG_ERROR,