From: Vitor Sessak Date: Tue, 29 Jul 2008 18:22:31 +0000 (+0000) Subject: Do not declare a counter as unsigned when it is not needed X-Git-Tag: v0.5~3428 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4ca7e74c1fd2891433c661ab4b64267e6e9cdbb0;p=platform%2Fupstream%2Flibav.git Do not declare a counter as unsigned when it is not needed Originally committed as revision 14469 to svn://svn.ffmpeg.org/ffmpeg/trunk --- 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];