summaryrefslogtreecommitdiffstats
path: root/lib/lz4frame.c
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2017-03-29 21:18:10 (GMT)
committerYann Collet <cyan@fb.com>2017-03-29 21:18:10 (GMT)
commit6226d52eabf2ef71cdef13827fda96c71707a238 (patch)
tree863b709cc29d2cced4388dfa538923ed9d27b93b /lib/lz4frame.c
parentb88df6b1b058a1a4884e8c7c80ce8b7e0839eb30 (diff)
downloadlz4-6226d52eabf2ef71cdef13827fda96c71707a238.zip
lz4-6226d52eabf2ef71cdef13827fda96c71707a238.tar.gz
lz4-6226d52eabf2ef71cdef13827fda96c71707a238.tar.bz2
fixed minor Visual warning
Diffstat (limited to 'lib/lz4frame.c')
-rw-r--r--lib/lz4frame.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4frame.c b/lib/lz4frame.c
index 1184a0f..e04fe83 100644
--- a/lib/lz4frame.c
+++ b/lib/lz4frame.c
@@ -764,7 +764,7 @@ LZ4F_errorCode_t LZ4F_createDecompressionContext(LZ4F_dctx** LZ4F_decompressionC
return LZ4F_OK_NoError;
}
-LZ4F_errorCode_t LZ4F_freeDecompressionContext(LZ4F_dctx* const dctxPtr)
+LZ4F_errorCode_t LZ4F_freeDecompressionContext(LZ4F_dctx* dctxPtr)
{
LZ4F_errorCode_t result = LZ4F_OK_NoError;
if (dctxPtr != NULL) { /* can accept NULL input, like free() */