changeset 6804:24a8b213ba4d libavcodec

Use correct type in FFSWAP (thanks to Benoit Fouet for pointing it out)
author vitor
date Thu, 15 May 2008 18:30:05 +0000
parents f3b2012e7aae
children 8faad14a40a5
files ra144.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;
 }