summaryrefslogtreecommitdiff
path: root/cpp/src/qpid
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/qpid')
-rw-r--r--cpp/src/qpid/asyncStore/jrnl2/RecordHeader.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/qpid/asyncStore/jrnl2/RecordHeader.cpp b/cpp/src/qpid/asyncStore/jrnl2/RecordHeader.cpp
index 2d4a487791..0f578cfa79 100644
--- a/cpp/src/qpid/asyncStore/jrnl2/RecordHeader.cpp
+++ b/cpp/src/qpid/asyncStore/jrnl2/RecordHeader.cpp
@@ -97,9 +97,9 @@ RecordHeader::getHeaderSize() {
uint32_t
RecordHeader::getCheckSum(uint32_t initialValue) const {
uint32_t cs = initialValue;
- for (unsigned char* p = (unsigned char*)this;
- p < (unsigned char*)this + getHeaderSize() + getBodySize();
- p++) {
+ for (unsigned char const * p = reinterpret_cast<unsigned char const *>(this);
+ p < reinterpret_cast<unsigned char const *>(this) + getHeaderSize() + getBodySize();
+ p++) {
cs ^= (uint32_t)(*p);
bool carry = cs & uint32_t(0x80000000);
cs <<= 1;