aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2021-09-09 09:38:12 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2021-09-09 09:38:12 +0200
commit0c05f474809303f5aa95eee304432e613003bffc (patch)
treeaa1ac53c79471cc3181743c332ef44a894fc4afe
parented7134d6ab78e6a608d065846eb153a0580e3443 (diff)
Fix
-rw-r--r--bbot/worker/worker.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/bbot/worker/worker.cxx b/bbot/worker/worker.cxx
index f9081a2..328513f 100644
--- a/bbot/worker/worker.cxx
+++ b/bbot/worker/worker.cxx
@@ -586,7 +586,7 @@ upload_manifest (tracer& trace,
{
tmp = auto_rmfile (path::temp_path (what + "-manifest.lz4"));
ofdstream ofs (tmp.path);
- olz4stream ozs (ofs, 5 /* 256KB */, 9, nullopt /* content_size */);
+ olz4stream ozs (ofs, 9, 5 /* 256KB */, nullopt /* content_size */);
manifest_serializer s (ozs, tmp.path.string ());
m.serialize (s);
ozs.close ();