diff options
author | Diego Biurrun | 2009-01-21 23:55:51 +0000 |
---|---|---|
committer | Diego Biurrun | 2009-01-21 23:55:51 +0000 |
commit | 7a845019c1f12e2a096053d890f2b52e06788fc5 (patch) | |
tree | abd66f63a36aceca157773d3987690182425843f /libavutil/des.c | |
parent | dce25564cc554cc85c8c28928b1b8d3f965c1b16 (diff) |
Avoid unused variable warning when compiling DES test program.
Originally committed as revision 16715 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/des.c')
-rw-r--r-- | libavutil/des.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavutil/des.c b/libavutil/des.c index 51d73a3c1e..b851552790 100644 --- a/libavutil/des.c +++ b/libavutil/des.c @@ -291,7 +291,10 @@ static uint64_t rand64(void) { } int main(void) { - int i, j; + int i; +#ifdef GENTABLES + int j; +#endif struct timeval tv; uint64_t key; uint64_t data; |