# HG changeset patch # User vitor # Date 1210876205 0 # Node ID 24a8b213ba4d5655d44d068b628e625ae3a2c140 # Parent f3b2012e7aaec03d0e0b0f53d42053c68cf2b4ee Use correct type in FFSWAP (thanks to Benoit Fouet for pointing it out) diff -r f3b2012e7aae -r 24a8b213ba4d ra144.c --- a/ra144.c Thu May 15 18:29:05 2008 +0000 +++ b/ra144.c Thu May 15 18:30:05 2008 +0000 @@ -394,7 +394,7 @@ if ((u + 0x1000) > 0x1fff) retval = 1; - FFSWAP(unsigned int *, bp1, bp2); + FFSWAP(int *, bp1, bp2); } return retval; }