diff options
| author | Dan Engelbrecht <[email protected]> | 2022-03-21 10:24:35 +0100 |
|---|---|---|
| committer | Dan Engelbrecht <[email protected]> | 2022-03-31 11:28:33 +0200 |
| commit | 0ab0d8c06b0a0b6361c717c68d9809ef2720b634 (patch) | |
| tree | 45d420e325f56b14b663f5a921873f146acd1f0f /zenstore/cas.cpp | |
| parent | Use constants for max block index and max block offset (diff) | |
| download | zen-0ab0d8c06b0a0b6361c717c68d9809ef2720b634.tar.xz zen-0ab0d8c06b0a0b6361c717c68d9809ef2720b634.zip | |
clang-format
Diffstat (limited to 'zenstore/cas.cpp')
| -rw-r--r-- | zenstore/cas.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zenstore/cas.cpp b/zenstore/cas.cpp index 38774ee01..b569a7dae 100644 --- a/zenstore/cas.cpp +++ b/zenstore/cas.cpp @@ -150,8 +150,8 @@ CasImpl::Initialize(const CasStoreConfiguration& InConfig) // Initialize payload storage m_LargeStrategy.Initialize(IsNewStore); - m_TinyStrategy.Initialize("tobs", 1u << 28, 16, IsNewStore); // 256 Mb per block - m_SmallStrategy.Initialize("sobs", 1u << 30, 4096, IsNewStore); // 1 Gb per block + m_TinyStrategy.Initialize("tobs", 1u << 28, 16, IsNewStore); // 256 Mb per block + m_SmallStrategy.Initialize("sobs", 1u << 30, 4096, IsNewStore); // 1 Gb per block } bool |