aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2025-03-12 10:40:20 +0100
committerStefan Boberg <[email protected]>2025-03-12 14:50:13 +0100
commit9268991f2cedd999d0b0e6175b6e32c89acddf38 (patch)
tree6d746a600824131f27839f552737e66bb05d5294 /src
parentProgressBar improvements (#305) (diff)
downloadzen-9268991f2cedd999d0b0e6175b6e32c89acddf38.tar.xz
zen-9268991f2cedd999d0b0e6175b6e32c89acddf38.zip
Remove spurious '4' in conditional code block
Diffstat (limited to 'src')
-rw-r--r--src/zen/cmds/builds_cmd.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/zen/cmds/builds_cmd.cpp b/src/zen/cmds/builds_cmd.cpp
index baa46dda8..d3536768b 100644
--- a/src/zen/cmds/builds_cmd.cpp
+++ b/src/zen/cmds/builds_cmd.cpp
@@ -3049,18 +3049,18 @@ namespace {
std::vector<IoHash> OutLooseChunkHashes;
std::vector<uint64_t> OutLooseChunkRawSizes;
std::vector<IoHash> OutBlockRawHashes;
- 4 ReadBuildContentFromCompactBinary(PartManifestWriter.Save(),
- VerifyFolderContent.Platform,
- VerifyFolderContent.Paths,
- VerifyFolderContent.RawHashes,
- VerifyFolderContent.RawSizes,
- VerifyFolderContent.Attributes,
- VerifyFolderContent.ChunkedContent.SequenceRawHashes,
- VerifyFolderContent.ChunkedContent.ChunkCounts,
- OutAbsoluteChunkOrders,
- OutLooseChunkHashes,
- OutLooseChunkRawSizes,
- OutBlockRawHashes);
+ ReadBuildContentFromCompactBinary(PartManifestWriter.Save(),
+ VerifyFolderContent.Platform,
+ VerifyFolderContent.Paths,
+ VerifyFolderContent.RawHashes,
+ VerifyFolderContent.RawSizes,
+ VerifyFolderContent.Attributes,
+ VerifyFolderContent.ChunkedContent.SequenceRawHashes,
+ VerifyFolderContent.ChunkedContent.ChunkCounts,
+ OutAbsoluteChunkOrders,
+ OutLooseChunkHashes,
+ OutLooseChunkRawSizes,
+ OutBlockRawHashes);
ZEN_ASSERT(OutBlockRawHashes == AllChunkBlockHashes);
for (uint32_t OrderIndex = 0; OrderIndex < OutAbsoluteChunkOrders.size(); OrderIndex++)