Fix Silly Warning (const-ness in declaration has no effect on value types!)
authorW. Felix Handte <w@felixhandte.com>
Wed, 11 Apr 2018 22:42:09 +0000 (18:42 -0400)
committerW. Felix Handte <w@felixhandte.com>
Wed, 11 Apr 2018 22:42:09 +0000 (18:42 -0400)
lib/lz4.c

index 111085a..4b0efb1 100644 (file)
--- 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);
 }