diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-03-13 10:46:18 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-03-13 10:46:18 +0000 |
commit | 5fd7f87b8dbdd5092a2c0cea522b0063c6baea1b (patch) | |
tree | 64f7caa18e12578110360c124073172b76bfa77a /libavutil/sha1.c | |
parent | 15b6cae245d110e91d465493276eabdc05e39cb0 (diff) | |
download | ffmpeg-5fd7f87b8dbdd5092a2c0cea522b0063c6baea1b.tar.gz |
cosmetic
Originally committed as revision 8378 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/sha1.c')
-rw-r--r-- | libavutil/sha1.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavutil/sha1.c b/libavutil/sha1.c index a8e2bd2c7d..6c7eb26af0 100644 --- a/libavutil/sha1.c +++ b/libavutil/sha1.c @@ -29,8 +29,7 @@ typedef struct AVSHA1 { static void transform(uint32_t state[5], uint8_t buffer[64]){ uint32_t block[80]; - unsigned int i; - unsigned int a, b, c, d, e; + unsigned int i, a, b, c, d, e; a = state[0]; b = state[1]; |