From a87228031f8a4e274c2f859a2589dcef2eb7cc58 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 25 Mar 2004 15:52:43 +0000 Subject: [PATCH] RAND_add() wants a double as it's last argument. --- crypto/bn/bn_rand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- GitLab