1
0
Fork 0

result is no longer used

This commit is contained in:
Frank Celler 2014-06-10 13:15:27 +02:00
parent 801cc84ce2
commit 4c09448d28
1 changed files with 1 additions and 2 deletions

View File

@ -66,9 +66,8 @@ static unsigned long SeedRandom (void) {
#ifdef TRI_HAVE_GETTIMEOFDAY
struct timeval tv;
int result;
result = gettimeofday(&tv, 0);
/* ignore result */ gettimeofday(&tv, 0);
seed = (unsigned long)(tv.tv_sec);
seed ^= (unsigned long)(tv.tv_usec);