From 4ca7e74c1fd2891433c661ab4b64267e6e9cdbb0 Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Tue, 29 Jul 2008 18:22:31 +0000 Subject: [PATCH] Do not declare a counter as unsigned when it is not needed Originally committed as revision 14469 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ra288.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c index d4bbbb6..6930cf5 100644 --- a/libavcodec/ra288.c +++ b/libavcodec/ra288.c @@ -171,7 +171,7 @@ static void do_hybrid_window(int order, int n, int non_rec, const float *in, 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]; -- 2.7.4