Avoid unused variable warning when compiling DES test program.

Originally committed as revision 16715 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2009-01-21 23:55:51 +00:00
parent dce25564cc
commit 7a845019c1
1 changed files with 4 additions and 1 deletions

View File

@ -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;