aboutsummaryrefslogtreecommitdiffstats
path: root/src/buf_es.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/buf_es.cpp')
-rw-r--r--src/buf_es.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buf_es.cpp b/src/buf_es.cpp
index 857d7688b..409a98297 100644
--- a/src/buf_es.cpp
+++ b/src/buf_es.cpp
@@ -52,7 +52,7 @@ void Buffered_EntropySource::do_fast_poll()
*************************************************/
void Buffered_EntropySource::add_bytes(const void* entropy_ptr, u32bit length)
{
- const byte* bytes = (const byte*)entropy_ptr;
+ const byte* bytes = static_cast<const byte*>(entropy_ptr);
while(length)
{
u32bit copied = std::min(length, buffer.size() - write_pos);
@@ -68,7 +68,7 @@ void Buffered_EntropySource::add_bytes(const void* entropy_ptr, u32bit length)
*************************************************/
void Buffered_EntropySource::add_bytes(u64bit entropy)
{
- add_bytes((const void*)&entropy, 8);
+ add_bytes(&entropy, 8);
}
/*************************************************