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/CAS.cpp | |
| parent | Merged main (diff) | |
| download | zen-13288fa7206303c708c1fa94ced8292cf3c1079e.tar.xz zen-13288fa7206303c708c1fa94ced8292cf3c1079e.zip | |
Replaced use of DWORD with uint32_t
Diffstat (limited to 'zenstore/CAS.cpp')
| -rw-r--r-- | zenstore/CAS.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zenstore/CAS.cpp b/zenstore/CAS.cpp index a26e9710f..bc4825419 100644 --- a/zenstore/CAS.cpp +++ b/zenstore/CAS.cpp @@ -180,7 +180,7 @@ CasImpl::Initialize(const CasStoreConfiguration& InConfig) id.ToString(manifest); Marker.Open(ManifestPath.c_str(), /* IsCreate */ true); - Marker.Write(manifest.c_str(), (DWORD)manifest.Size(), 0); + Marker.Write(manifest.c_str(), uint32_t(manifest.Size()), 0); } } |