diff options
author | Yann Collet <yann.collet.73@gmail.com> | 2015-05-03 17:06:01 (GMT) |
---|---|---|
committer | Yann Collet <yann.collet.73@gmail.com> | 2015-05-03 17:06:01 (GMT) |
commit | b4348a47189f7bce93537a85906d26b09be7e802 (patch) | |
tree | fdcc2db8265d19131c0ae5651b264f56ce3f4751 /lib | |
parent | 1171303a4ff6566f7f9d4b1f91d4d73f0bf00584 (diff) | |
download | lz4-b4348a47189f7bce93537a85906d26b09be7e802.zip lz4-b4348a47189f7bce93537a85906d26b09be7e802.tar.gz lz4-b4348a47189f7bce93537a85906d26b09be7e802.tar.bz2 |
Fixed minor Visual warning
Diffstat (limited to 'lib')
-rw-r--r-- | lib/lz4.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -654,7 +654,7 @@ _last_literals: } -int LZ4_compress_fast_extState(void* state, const char* source, char* dest, int inputSize, int maxOutputSize, volatile int acceleration) +int LZ4_compress_fast_extState(void* state, const char* source, char* dest, int inputSize, int maxOutputSize, int acceleration) { LZ4_resetStream((LZ4_stream_t*)state); if (acceleration < 1) acceleration = ACCELERATION_DEFAULT; |