Fix Silly Warning (const-ness in declaration has no effect on value types!)

This commit is contained in:
W. Felix Handte 2018-04-11 18:42:09 -04:00
parent 51a56c47c0
commit 056ea63215

View File

@ -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);
}