diff options
-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 (); |