mirror of
https://github.com/jedisct1/libsodium.git
synced 2026-08-25 08:37:13 +09:00
Don't return void
This commit is contained in:
@@ -79,7 +79,7 @@ randombytes_sysrandom_stir(void)
|
||||
static void
|
||||
randombytes_sysrandom_buf(void * const buf, const size_t size)
|
||||
{
|
||||
return arc4random_buf(buf, size);
|
||||
arc4random_buf(buf, size);
|
||||
}
|
||||
|
||||
static int
|
||||
|
||||
Reference in New Issue
Block a user