diff options
Diffstat (limited to 'zenstore')
| -rw-r--r-- | zenstore/caslog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zenstore/caslog.cpp b/zenstore/caslog.cpp index 5fd26abe2..449e2fc58 100644 --- a/zenstore/caslog.cpp +++ b/zenstore/caslog.cpp @@ -121,7 +121,7 @@ CasLogFile::Replay(std::function<void(const void*)>&& Handler) m_File.Read(ReadBuffer.data(), LogDataSize, LogBaseOffset); - for (int i = 0; i < LogEntryCount; ++i) + for (int i = 0; i < int(LogEntryCount); ++i) { Handler(ReadBuffer.data() + (i * m_RecordSize)); } |