Signed-off-by: Andreas Rheinhardt <andreas.rheinha...@outlook.com>
---
 libavutil/md5.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/libavutil/md5.c b/libavutil/md5.c
index 88596203c1..0170d8dd3f 100644
--- a/libavutil/md5.c
+++ b/libavutil/md5.c
@@ -100,7 +100,6 @@ static const uint32_t T[64] = { // T[i]= fabs(sin(i+1)<<32)
 
 static void body(uint32_t ABCD[4], const uint8_t *src, size_t nblocks)
 {
-    int i av_unused;
     const uint32_t *X;
     uint32_t a, b, c, d, t;
 
@@ -113,7 +112,7 @@ static void body(uint32_t ABCD[4], const uint8_t *src, 
size_t nblocks)
         X = (const uint32_t *)src + n * 16;
 
 #if CONFIG_SMALL
-        for (i = 0; i < 64; i++) {
+        for (int i = 0; i < 64; i++) {
             CORE(i, a, b, c, d);
             t = d;
             d = c;
-- 
2.30.2

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to