mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
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:
parent
dce25564cc
commit
7a845019c1
@ -291,7 +291,10 @@ static uint64_t rand64(void) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int main(void) {
|
int main(void) {
|
||||||
int i, j;
|
int i;
|
||||||
|
#ifdef GENTABLES
|
||||||
|
int j;
|
||||||
|
#endif
|
||||||
struct timeval tv;
|
struct timeval tv;
|
||||||
uint64_t key;
|
uint64_t key;
|
||||||
uint64_t data;
|
uint64_t data;
|
||||||
|
Loading…
Reference in New Issue
Block a user