summaryrefslogtreecommitdiffstats
path: root/lib/lz4frame.h
diff options
context:
space:
mode:
authorPrzemyslaw Skibinski <inikep@gmail.com>2016-11-07 13:14:42 (GMT)
committerPrzemyslaw Skibinski <inikep@gmail.com>2016-11-07 13:14:42 (GMT)
commitd61bb74f2044fed546de21f5b1e39737d79b8e48 (patch)
tree720e29077ee1c3f6de1166a46941f46aee019f67 /lib/lz4frame.h
parent7a98db266bce656ee64bd3cfedf796921c154f90 (diff)
downloadlz4-d61bb74f2044fed546de21f5b1e39737d79b8e48.zip
lz4-d61bb74f2044fed546de21f5b1e39737d79b8e48.tar.gz
lz4-d61bb74f2044fed546de21f5b1e39737d79b8e48.tar.bz2
updated declaration of LZ4F_freeDecompressionContext
Diffstat (limited to 'lib/lz4frame.h')
-rw-r--r--lib/lz4frame.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4frame.h b/lib/lz4frame.h
index 6b6e320..43bc23c 100644
--- a/lib/lz4frame.h
+++ b/lib/lz4frame.h
@@ -274,7 +274,7 @@ typedef struct {
* That is, it should be == 0 if decompression has been completed fully and correctly.
*/
LZ4FLIB_API LZ4F_errorCode_t LZ4F_createDecompressionContext(LZ4F_dctx** dctxPtr, unsigned version);
-LZ4FLIB_API LZ4F_errorCode_t LZ4F_freeDecompressionContext(LZ4F_dctx* dctx);
+LZ4FLIB_API LZ4F_errorCode_t LZ4F_freeDecompressionContext(LZ4F_dctx* const dctx);
/*====== Decompression ======*/