It was just pointed out to me that it's better to cast to double...

This commit is contained in:
Richard Levitte
2004-03-15 23:02:55 +00:00
parent fd836aeee0
commit ec37635c94
2 changed files with 2 additions and 2 deletions

View File

@@ -233,7 +233,7 @@ int RAND_poll(void)
#if defined(DEVRANDOM) || defined(DEVRANDOM_EGD)
if (n > 0)
{
RAND_add(tmpbuf,sizeof tmpbuf,(float)n);
RAND_add(tmpbuf,sizeof tmpbuf,(double)n);
OPENSSL_cleanse(tmpbuf,n);
}
#endif