Commit 36be5a49 authored by diego's avatar diego

Mark conditionally used variable T2 as av_unused; avoids the warning:

libavutil/sha.c:183: warning: unused variable `T2'


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19551 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9ab9106b
...@@ -180,7 +180,7 @@ static void sha256_transform(uint32_t *state, const uint8_t buffer[64]) ...@@ -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; unsigned int i, a, b, c, d, e, f, g, h;
uint32_t block[64]; uint32_t block[64];
uint32_t T1, T2; uint32_t T1, av_unused(T2);
a = state[0]; a = state[0];
b = state[1]; b = state[1];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment