diff options
author | Måns Rullgård <mans@mansr.com> | 2006-07-02 20:20:28 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-07-02 20:20:28 +0000 |
commit | d10fda8ee2a25f21563869728fe1d6abfb04f9ae (patch) | |
tree | 5bfda3c88eb75cc47b5cfb120e28ca1533a026eb | |
parent | 26b891356c14bde0dda189d0b26d4e7fc415ecaf (diff) | |
download | ffmpeg-d10fda8ee2a25f21563869728fe1d6abfb04f9ae.tar.gz |
1l: put that int i back
Originally committed as revision 5587 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavutil/md5.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/md5.c b/libavutil/md5.c index 330f318998..844bcb0e80 100644 --- a/libavutil/md5.c +++ b/libavutil/md5.c @@ -71,6 +71,7 @@ static const uint32_t T[64] = { static void body(uint32_t ABCD[4], const uint32_t X[16]){ int t; + int i attribute_unused; unsigned int a= ABCD[3]; unsigned int b= ABCD[2]; unsigned int c= ABCD[1]; |