summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorW. Felix Handte <w@felixhandte.com>2018-04-11 22:42:09 (GMT)
committerW. Felix Handte <w@felixhandte.com>2018-04-11 22:42:09 (GMT)
commit056ea63215800c9c16e81db92eacc9a9c87548ae (patch)
treecb59916ec999f2732690eac9ae9a29be5ecaf0aa
parent51a56c47c0d34b6255bdd8e7b33f0ccb44b80351 (diff)
downloadlz4-056ea63215800c9c16e81db92eacc9a9c87548ae.zip
lz4-056ea63215800c9c16e81db92eacc9a9c87548ae.tar.gz
lz4-056ea63215800c9c16e81db92eacc9a9c87548ae.tar.bz2
Fix Silly Warning (const-ness in declaration has no effect on value types!)
-rw-r--r--lib/lz4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4.c b/lib/lz4.c
index 111085a..4b0efb1 100644
--- a/lib/lz4.c
+++ b/lib/lz4.c
@@ -1147,7 +1147,7 @@ void LZ4_resetStream (LZ4_stream_t* LZ4_stream)
MEM_INIT(LZ4_stream, 0, sizeof(LZ4_stream_t));
}
-void LZ4_resetStream_fast(LZ4_stream_t* const ctx) {
+void LZ4_resetStream_fast(LZ4_stream_t* ctx) {
LZ4_prepareTable(&(ctx->internal_donotuse), 0, byU32);
}