Commit ff90ded7 authored by diego's avatar diego

Avoid unused variable warning when compiling DES test program.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16715 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 5ef84fba
......@@ -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;
......
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