diff options
author | W. Felix Handte <w@felixhandte.com> | 2018-04-11 22:42:09 (GMT) |
---|---|---|
committer | W. Felix Handte <w@felixhandte.com> | 2018-04-11 22:42:09 (GMT) |
commit | 056ea63215800c9c16e81db92eacc9a9c87548ae (patch) | |
tree | cb59916ec999f2732690eac9ae9a29be5ecaf0aa /lib | |
parent | 51a56c47c0d34b6255bdd8e7b33f0ccb44b80351 (diff) | |
download | lz4-056ea63215800c9c16e81db92eacc9a9c87548ae.zip lz4-056ea63215800c9c16e81db92eacc9a9c87548ae.tar.gz lz4-056ea63215800c9c16e81db92eacc9a9c87548ae.tar.bz2 |
Fix Silly Warning (const-ness in declaration has no effect on value types!)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/lz4.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |