From ab5e6526a3ca17a1ccec2651064c71f3d872db6b Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Thu, 15 May 2008 18:30:05 +0000 Subject: [PATCH] Use correct type in FFSWAP (thanks to Benoit Fouet for pointing it out) Originally committed as revision 13161 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ra144.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/ra144.c b/libavcodec/ra144.c index 234f85c..c2b6349 100644 --- a/libavcodec/ra144.c +++ b/libavcodec/ra144.c @@ -394,7 +394,7 @@ static int eq(Real144_internal *glob, short *in, int *target) if ((u + 0x1000) > 0x1fff) retval = 1; - FFSWAP(unsigned int *, bp1, bp2); + FFSWAP(int *, bp1, bp2); } return retval; } -- 2.7.4