From 119e2c0056d88d08069545879fdbf236e97682cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Sat, 16 Jun 2007 11:44:54 +0000 Subject: [PATCH] kill a warning on 64-bit machines Originally committed as revision 9331 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/dsputil.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,