Mercurial > libavcodec.hg
changeset 5150:447fb0fdf6e1 libavcodec
kill a warning on 64-bit machines
author | mru |
---|---|
date | Sat, 16 Jun 2007 11:44:54 +0000 |
parents | b7bae4ce8b07 |
children | 8c273ff9ca03 |
files | dsputil.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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,