diff options
author | Yann Collet <cyan@fb.com> | 2019-04-05 17:41:16 (GMT) |
---|---|---|
committer | Yann Collet <cyan@fb.com> | 2019-04-05 17:41:26 (GMT) |
commit | c3f8928f879f5ce89d9c32996ea991312e6c69ec (patch) | |
tree | 4a4d12b7abb574db79ae437e58679dea1cac1246 /lib/lz4hc.c | |
parent | c491df54eca484654d14b3608406c35ab7366ec6 (diff) | |
download | lz4-c3f8928f879f5ce89d9c32996ea991312e6c69ec.zip lz4-c3f8928f879f5ce89d9c32996ea991312e6c69ec.tar.gz lz4-c3f8928f879f5ce89d9c32996ea991312e6c69ec.tar.bz2 |
fixed strict iso C90
Diffstat (limited to 'lib/lz4hc.c')
-rw-r--r-- | lib/lz4hc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4hc.c b/lib/lz4hc.c index 644b8eb..9e8b77e 100644 --- a/lib/lz4hc.c +++ b/lib/lz4hc.c @@ -911,7 +911,7 @@ void LZ4_initStreamHC (void* state, int compressionLevel) /* just a stub */ void LZ4_resetStreamHC (LZ4_streamHC_t* LZ4_streamHCPtr, int compressionLevel) { - return LZ4_initStreamHC(LZ4_streamHCPtr, compressionLevel); + LZ4_initStreamHC(LZ4_streamHCPtr, compressionLevel); } void LZ4_resetStreamHC_fast (LZ4_streamHC_t* LZ4_streamHCPtr, int compressionLevel) |