aboutsummaryrefslogtreecommitdiffstats
path: root/src/rng/randpool/randpool.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/rng/randpool/randpool.cpp')
-rw-r--r--src/rng/randpool/randpool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rng/randpool/randpool.cpp b/src/rng/randpool/randpool.cpp
index fb8dfcd09..b5e2e2748 100644
--- a/src/rng/randpool/randpool.cpp
+++ b/src/rng/randpool/randpool.cpp
@@ -38,7 +38,7 @@ void Randpool::randomize(byte out[], u32bit length)
while(length)
{
const u32bit copied = std::min(length, buffer.size());
- copy_mem(out, buffer.begin(), copied);
+ copy_mem(out, &buffer[0], copied);
out += copied;
length -= copied;
update_buffer();