diff options
author | Simon Warta <[email protected]> | 2015-06-26 11:12:22 +0200 |
---|---|---|
committer | Simon Warta <[email protected]> | 2015-06-27 10:57:40 +0200 |
commit | fdc1fba275933dfccc347774f9c13c1c6253113a (patch) | |
tree | 473f09e63fcb17fe5050d3e76fa9c8a9c68527ed /src/lib/entropy/proc_walk | |
parent | 9f8f8bc3951f3b9a8da871b5e5ee0a75be0bace2 (diff) |
lib/entropy: Convert &vec[0] to vec.data()
Diffstat (limited to 'src/lib/entropy/proc_walk')
-rw-r--r-- | src/lib/entropy/proc_walk/proc_walk.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/entropy/proc_walk/proc_walk.cpp b/src/lib/entropy/proc_walk/proc_walk.cpp index 1501f0774..217ed5a52 100644 --- a/src/lib/entropy/proc_walk/proc_walk.cpp +++ b/src/lib/entropy/proc_walk/proc_walk.cpp @@ -133,11 +133,11 @@ void ProcWalking_EntropySource::poll(Entropy_Accumulator& accum) break; } - ssize_t got = ::read(fd, &m_buf[0], m_buf.size()); + ssize_t got = ::read(fd, m_buf.data(), m_buf.size()); ::close(fd); if(got > 0) - accum.add(&m_buf[0], got, ENTROPY_ESTIMATE); + accum.add(m_buf.data(), got, ENTROPY_ESTIMATE); if(accum.polling_finished()) break; |