Do not declare a counter as unsigned when it is not needed

Originally committed as revision 14469 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Vitor Sessak 2008-07-29 18:22:31 +00:00
parent 4e33ed368a
commit 4ca7e74c1f

View File

@ -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];