diff options
author | Yann Collet <yann.collet.73@gmail.com> | 2015-03-31 17:52:52 (GMT) |
---|---|---|
committer | Yann Collet <yann.collet.73@gmail.com> | 2015-03-31 17:52:52 (GMT) |
commit | a761546b1b8499bd52ed84876df03cb00e81c02e (patch) | |
tree | c9b8ccbde68c4373975ebc1edd5dd198ddee1583 /lib/lz4.c | |
parent | bf146ec2476f5a6d4128dfee665e9e0d2db00f4d (diff) | |
download | lz4-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 */ |