aboutsummaryrefslogtreecommitdiff
path: root/libbutl
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2021-09-09 11:30:36 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2021-09-09 11:30:36 +0200
commit432a30e7e896d3049d5c2bde40604795f57b3441 (patch)
treef482ce315118af650583344399ff652e310c3065 /libbutl
parent07286ad05fc2a60a485f542340aa04ceeaa3748c (diff)
Fix bug in lz4::ostream usage example
Diffstat (limited to 'libbutl')
-rw-r--r--libbutl/lz4-stream.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbutl/lz4-stream.hxx b/libbutl/lz4-stream.hxx
index 611fe37..5a0e3ba 100644
--- a/libbutl/lz4-stream.hxx
+++ b/libbutl/lz4-stream.hxx
@@ -207,7 +207,7 @@ namespace butl
// try
// {
// ofdstream ofs (...);
- // lz4::ostream ozs (ofs, 4 /* 64KB */, 9, nullopt /* content_size */);
+ // lz4::ostream ozs (ofs, 9, 4 /* 64KB */, nullopt /* content_size */);
//
// ... // Write to ozs.
//