Correctly adjust location of comment
Submitted by: Ben Laurie <ben@links.org>
This commit is contained in:
parent
56bef2df4f
commit
03e79ed05e
1 changed files with 1 additions and 1 deletions
|
@ -126,10 +126,10 @@ int RAND_load_file(const char *file, long bytes)
|
|||
n = BUFSIZE;
|
||||
i=fread(buf,1,n,in);
|
||||
if (i <= 0) break;
|
||||
/* even if n != i, use the full array */
|
||||
#ifdef PURIFY
|
||||
RAND_add(buf,i,(double)i);
|
||||
#else
|
||||
/* even if n != i, use the full array */
|
||||
RAND_add(buf,n,(double)i);
|
||||
#endif
|
||||
ret+=i;
|
||||
|
|
Loading…
Reference in a new issue