]> git.sesse.net Git - ffmpeg/commitdiff
Mark conditionally used variable T2 as av_unused; avoids the warning:
authorDiego Biurrun <diego@biurrun.de>
Thu, 30 Jul 2009 21:21:30 +0000 (21:21 +0000)
committerDiego Biurrun <diego@biurrun.de>
Thu, 30 Jul 2009 21:21:30 +0000 (21:21 +0000)
libavutil/sha.c:183: warning: unused variable `T2'

Originally committed as revision 19551 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavutil/sha.c

index 1f1de2c6e9a9f1c353bf9c82c2bbbbfadc534bfc..3107deeffea65758f7860e24f654df28aec6313f 100644 (file)
@@ -180,7 +180,7 @@ static void sha256_transform(uint32_t *state, const uint8_t buffer[64])
 {
     unsigned int i, a, b, c, d, e, f, g, h;
     uint32_t block[64];
-    uint32_t T1, T2;
+    uint32_t T1, av_unused(T2);
 
     a = state[0];
     b = state[1];