Change i to unsigned in get_generic_seed().

This is clearer than comparing against an unsigned number to force an unsigned
comparison that we need.

Originally committed as revision 24114 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2010-07-08 17:49:39 +00:00
parent 9be24c60d3
commit b65c1ccfe1
1 changed files with 2 additions and 2 deletions

View File

@ -43,13 +43,13 @@ static uint32_t get_generic_seed(void)
int last_t=0;
int bits=0;
uint64_t random=0;
int i;
unsigned i;
int s=0;
for(i=0;bits<64;i++){
int t= clock()>>s;
if(last_t && t != last_t){
if(i<10000U && s<24){
if(i<10000 && s<24){
s++;
i=t=0;
}else{