From b4348a47189f7bce93537a85906d26b09be7e802 Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Sun, 3 May 2015 18:06:01 +0100 Subject: Fixed minor Visual warning --- lib/lz4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lz4.c b/lib/lz4.c index 3c182aa..bb40f76 100644 --- a/lib/lz4.c +++ b/lib/lz4.c @@ -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; -- cgit v0.12