Commit 119e2c00 authored by Måns Rullgård's avatar Måns Rullgård

kill a warning on 64-bit machines

Originally committed as revision 9331 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a1bee080
...@@ -3821,7 +3821,7 @@ int ff_check_alignment(void){ ...@@ -3821,7 +3821,7 @@ int ff_check_alignment(void){
static int did_fail=0; static int did_fail=0;
DECLARE_ALIGNED_16(int, aligned); DECLARE_ALIGNED_16(int, aligned);
if((int)&aligned & 15){ if((long)&aligned & 15){
if(!did_fail){ if(!did_fail){
#if defined(HAVE_MMX) || defined(HAVE_ALTIVEC) #if defined(HAVE_MMX) || defined(HAVE_ALTIVEC)
av_log(NULL, AV_LOG_ERROR, av_log(NULL, AV_LOG_ERROR,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment