Also Fix a Comment

This commit is contained in:
W. Felix Handte 2018-03-21 11:48:35 -04:00
parent a3a9b80dff
commit 126f18d3e0

View File

@ -1722,7 +1722,7 @@ void* LZ4_create (char* inputBuffer)
char* LZ4_slideInputBuffer (void* state)
{
// avoid const char * -> char * conversion warning
/* avoid const char * -> char * conversion warning */
return (char *)(uptrval)((LZ4_stream_t*)state)->internal_donotuse.dictionary;
}