diff ra288.c @ 7449:18fc253b4991 libavcodec

Do not declare a counter as unsigned when it is not needed
author vitor
date Tue, 29 Jul 2008 18:22:31 +0000
parents b15534513059
children 85ab7655ad4d
line wrap: on
line diff
--- a/ra288.c	Tue Jul 29 18:20:49 2008 +0000
+++ b/ra288.c	Tue Jul 29 18:22:31 2008 +0000
@@ -171,7 +171,7 @@
                              float *out, float *hist, float *out2,
                              const float *window)
 {
-    unsigned int i;
+    int i;
     float buffer1[order + 1];
     float buffer2[order + 1];
     float work[order + n + non_rec];