# HG changeset patch # User mru # Date 1181994294 0 # Node ID 447fb0fdf6e1649cb384ab8e2b3df7acee21e3af # Parent b7bae4ce8b072b078e47e23020cef17be8919fb8 kill a warning on 64-bit machines diff -r b7bae4ce8b07 -r 447fb0fdf6e1 dsputil.c --- a/dsputil.c Sat Jun 16 10:44:46 2007 +0000 +++ b/dsputil.c Sat Jun 16 11:44:54 2007 +0000 @@ -3821,7 +3821,7 @@ 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,