Commit e40feb64 authored by vitor's avatar vitor

Use correct type in FFSWAP (thanks to Benoit Fouet for pointing it out)

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13161 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9b7c0960
...@@ -394,7 +394,7 @@ static int eq(Real144_internal *glob, short *in, int *target) ...@@ -394,7 +394,7 @@ static int eq(Real144_internal *glob, short *in, int *target)
if ((u + 0x1000) > 0x1fff) if ((u + 0x1000) > 0x1fff)
retval = 1; retval = 1;
FFSWAP(unsigned int *, bp1, bp2); FFSWAP(int *, bp1, bp2);
} }
return retval; return retval;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment