diff options
| author | Martin Ridgers <[email protected]> | 2022-04-12 15:04:59 +0200 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2022-04-12 15:04:59 +0200 |
| commit | f1c688392df760db24bf3280e7ef41d900d54218 (patch) | |
| tree | 1fb4eb99bd8a7dfabb5ae89de959703e82677c40 /zenstore/compactcas.cpp | |
| parent | Commented out key file conditioning (diff) | |
| download | zen-f1c688392df760db24bf3280e7ef41d900d54218.tar.xz zen-f1c688392df760db24bf3280e7ef41d900d54218.zip | |
Mac fix
Diffstat (limited to 'zenstore/compactcas.cpp')
| -rw-r--r-- | zenstore/compactcas.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zenstore/compactcas.cpp b/zenstore/compactcas.cpp index ce93a3320..4297c41e7 100644 --- a/zenstore/compactcas.cpp +++ b/zenstore/compactcas.cpp @@ -1275,7 +1275,7 @@ CasContainerStrategy::MigrateLegacyData(bool CleanSource) { const LegacyCasDiskIndexEntry& Record(Entry.second); - BlockStoreLocation NewChunkLocation(WriteBlockIndex, Record.Location.GetOffset(), Record.Location.GetSize()); + BlockStoreLocation NewChunkLocation{WriteBlockIndex, Record.Location.GetOffset(), Record.Location.GetSize()}; BlockStoreDiskLocation NewLocation(NewChunkLocation, m_PayloadAlignment); LogEntries.push_back( {.Key = Entry.second.Key, .Location = NewLocation, .ContentType = Record.ContentType, .Flags = Record.Flags}); |