fixed linux random bug

This commit is contained in:
Orson Peters 2013-02-18 18:53:18 +01:00
parent 3e9ba861d0
commit 8b7c17d5da
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ int ed25519_create_seed(unsigned char *seed) {
return 1;
}
freadf(seed, 1, 32, f);
fread(seed, 1, 32, f);
fclose(f);
#endif