diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-09-09 09:38:12 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-09-09 09:38:12 +0200 |
commit | 0c05f474809303f5aa95eee304432e613003bffc (patch) | |
tree | aa1ac53c79471cc3181743c332ef44a894fc4afe | |
parent | ed7134d6ab78e6a608d065846eb153a0580e3443 (diff) |
Fix
-rw-r--r-- | bbot/worker/worker.cxx | 2 |
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 (); |