summaryrefslogtreecommitdiff
path: root/test/utils/large_objects/large_object_utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/utils/large_objects/large_object_utils.cpp')
-rw-r--r--test/utils/large_objects/large_object_utils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/utils/large_objects/large_object_utils.cpp b/test/utils/large_objects/large_object_utils.cpp
index de8e6c7d..a30a9276 100644
--- a/test/utils/large_objects/large_object_utils.cpp
+++ b/test/utils/large_objects/large_object_utils.cpp
@@ -95,7 +95,7 @@ auto LargeObjectUtils::GenerateFile(std::filesystem::path const& path,
try {
std::ofstream stream(path);
- for (std::size_t i = 0; i < step_count && stream.good(); ++i) {
+ for (std::size_t i = 0; i < step_count and stream.good(); ++i) {
const std::size_t index = (pool_index + i * pool_shift) % kPoolSize;
if (i != step_count - 1) {
stream << Pool::Instance()[index];