diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-05-15 18:30:05 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-05-15 18:30:05 +0000 |
commit | ab5e6526a3ca17a1ccec2651064c71f3d872db6b (patch) | |
tree | 022d82d64e999981e16be2723b981f2f4830ef4c | |
parent | cf408d88739825830f8f60461724c18cb746104b (diff) | |
download | ffmpeg-ab5e6526a3ca17a1ccec2651064c71f3d872db6b.tar.gz |
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
-rw-r--r-- | libavcodec/ra144.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ra144.c b/libavcodec/ra144.c index 234f85c0bc..c2b6349931 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; } |