diff options
author | Måns Rullgård <mans@mansr.com> | 2007-06-16 11:44:54 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2007-06-16 11:44:54 +0000 |
commit | 119e2c0056d88d08069545879fdbf236e97682cd (patch) | |
tree | 67903ac4e4de8b698d69f4d8bfdf8cfabc1c8a68 /libavcodec/dsputil.c | |
parent | a1bee08046ca6f30ea8ea4dd9e7c31c178f4fcfd (diff) | |
download | ffmpeg-119e2c0056d88d08069545879fdbf236e97682cd.tar.gz |
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.c | 2 |
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, |