diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-09-09 11:30:36 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-09-09 11:30:36 +0200 |
commit | 432a30e7e896d3049d5c2bde40604795f57b3441 (patch) | |
tree | f482ce315118af650583344399ff652e310c3065 | |
parent | 07286ad05fc2a60a485f542340aa04ceeaa3748c (diff) |
Fix bug in lz4::ostream usage example
-rw-r--r-- | libbutl/lz4-stream.hxx | 2 |
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. // |