diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-07-29 18:22:31 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-07-29 18:22:31 +0000 |
commit | 4ca7e74c1fd2891433c661ab4b64267e6e9cdbb0 (patch) | |
tree | 8e9f0cce713badc26c6176439188e8fa56604bcb /libavcodec/ra288.c | |
parent | 4e33ed368a56c17f611c6223a646f6a9298493c6 (diff) | |
download | ffmpeg-4ca7e74c1fd2891433c661ab4b64267e6e9cdbb0.tar.gz |
Do not declare a counter as unsigned when it is not needed
Originally committed as revision 14469 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ra288.c')
-rw-r--r-- | libavcodec/ra288.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c index d4bbbb699c..6930cf5368 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]; |