From d10fda8ee2a25f21563869728fe1d6abfb04f9ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Sun, 2 Jul 2006 20:20:28 +0000 Subject: [PATCH] 1l: put that int i back Originally committed as revision 5587 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/md5.c | 1 + 1 file changed, 1 insertion(+) 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];