Commit 447dbcf8 authored by vitor's avatar vitor

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

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14469 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e7b3b3bd
......@@ -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];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment