From 0c05f474809303f5aa95eee304432e613003bffc Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 9 Sep 2021 09:38:12 +0200 Subject: Fix --- bbot/worker/worker.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 (); -- cgit v1.1