summaryrefslogtreecommitdiffstats
path: root/lib/lz4.c
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2015-03-31 17:52:52 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2015-03-31 17:52:52 (GMT)
commita761546b1b8499bd52ed84876df03cb00e81c02e (patch)
treec9b8ccbde68c4373975ebc1edd5dd198ddee1583 /lib/lz4.c
parentbf146ec2476f5a6d4128dfee665e9e0d2db00f4d (diff)
downloadlz4-a761546b1b8499bd52ed84876df03cb00e81c02e.zip
lz4-a761546b1b8499bd52ed84876df03cb00e81c02e.tar.gz
lz4-a761546b1b8499bd52ed84876df03cb00e81c02e.tar.bz2
Fix : minor warning under Visual
Diffstat (limited to 'lib/lz4.c')
-rw-r--r--lib/lz4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4.c b/lib/lz4.c
index cd6147f..3dc44f2 100644
--- a/lib/lz4.c
+++ b/lib/lz4.c
@@ -731,7 +731,7 @@ _last_literals:
}
-int LZ4_compress(const char* source, char* dest, const int inputSize)
+int LZ4_compress(const char* source, char* dest, int inputSize)
{
#if (HEAPMODE)
void* ctx = ALLOCATOR(LZ4_STREAMSIZE_U64, 8); /* Aligned on 8-bytes boundaries */