diff options
| author | Martin Ridgers <[email protected]> | 2021-10-13 11:07:15 +0200 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2021-10-13 11:07:15 +0200 |
| commit | 13288fa7206303c708c1fa94ced8292cf3c1079e (patch) | |
| tree | 247faada8949852a184e7b8dea4fa1f3b766045d /zenstore/caslog.cpp | |
| parent | Merged main (diff) | |
| download | zen-13288fa7206303c708c1fa94ced8292cf3c1079e.tar.xz zen-13288fa7206303c708c1fa94ced8292cf3c1079e.zip | |
Replaced use of DWORD with uint32_t
Diffstat (limited to 'zenstore/caslog.cpp')
| -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 c1cb68379..5fd26abe2 100644 --- a/zenstore/caslog.cpp +++ b/zenstore/caslog.cpp @@ -135,7 +135,7 @@ CasLogFile::Append(const void* DataPointer, uint64_t DataSize) uint64_t AppendOffset = m_AppendOffset.fetch_add(DataSize); std::error_code Ec; - m_File.Write(DataPointer, gsl::narrow<DWORD>(DataSize), AppendOffset, Ec); + m_File.Write(DataPointer, gsl::narrow<uint32_t>(DataSize), AppendOffset, Ec); if (Ec) { |