From: Richard Levitte Date: Thu, 25 Mar 2004 15:52:43 +0000 (+0000) Subject: RAND_add() wants a double as it's last argument. X-Git-Tag: OpenSSL_0_9_7e~130^2~20 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=a87228031f8a4e274c2f859a2589dcef2eb7cc58 RAND_add() wants a double as it's last argument. --- diff --git a/crypto/bn/bn_rand.c b/crypto/bn/bn_rand.c index df45575f9a..323bfa74bc 100644 --- a/crypto/bn/bn_rand.c +++ b/crypto/bn/bn_rand.c @@ -140,7 +140,7 @@ static int bnrand(int pseudorand, BIGNUM *rnd, int bits, int top, int bottom) /* make a random number and set the top and bottom bits */ time(&tim); - RAND_add(&tim,sizeof(tim),0); + RAND_add(&tim,sizeof(tim),0.0); if (pseudorand) {