mirror of
https://github.com/jedisct1/libsodium.git
synced 2026-08-25 08:37:13 +09:00
Merge branch 'master' of https://github.com/jedisct1/libsodium
* 'master' of https://github.com/jedisct1/libsodium: C++ compat
This commit is contained in:
@@ -154,7 +154,7 @@ randombytes_buf(void * const buf, const size_t size)
|
||||
implementation->buf(buf, size);
|
||||
}
|
||||
#else
|
||||
unsigned char *p = buf;
|
||||
unsigned char *p = (unsigned char *) buf;
|
||||
size_t i;
|
||||
|
||||
for (i = (size_t) 0U; i < size; i++) {
|
||||
|
||||
Reference in New Issue
Block a user