summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorAlexander Mohr <git@mohr.io>2022-06-11 21:14:56 (GMT)
committerAlexander Mohr <git@mohr.io>2022-06-11 21:58:03 (GMT)
commit9a42a9db94ff4c71de5590cae8d0f90339e6733b (patch)
tree3129b8e42c2dbebbbaddf3b1b5189275c588783d /doc
parent3c57d2f185c2b482fde69a4c5f04dbb48bacab58 (diff)
downloadlz4-9a42a9db94ff4c71de5590cae8d0f90339e6733b.zip
lz4-9a42a9db94ff4c71de5590cae8d0f90339e6733b.tar.gz
lz4-9a42a9db94ff4c71de5590cae8d0f90339e6733b.tar.bz2
dict-size: make lz4 context const
change the context to const to make clear that the context is not modified
Diffstat (limited to 'doc')
-rw-r--r--doc/lz4_manual.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lz4_manual.html b/doc/lz4_manual.html
index 13c1ae6..700cb84 100644
--- a/doc/lz4_manual.html
+++ b/doc/lz4_manual.html
@@ -391,7 +391,7 @@ int LZ4_freeStreamDecode (LZ4_streamDecode_t* LZ4_stream);
</p></pre><BR>
-<pre><b>LZ4LIB_STATIC_API int LZ4_getDictSize (LZ4_stream_t* LZ4_dict, int dictSize);
+<pre><b>LZ4LIB_STATIC_API int LZ4_getDictSize (const LZ4_stream_t* LZ4_dict, int dictSize);
</b><p> Get the size of the dictionary. This can be used for adding data without
compression to the LZ4 archive. If linked blocked mode is used the memory
of the dictionary is kept free.