Address some compiler warnings about implicit integer conversions.

--HG--
branch : minor
This commit is contained in:
Alex Szpakowski
2016-10-18 22:32:35 -03:00
parent 2e016810c9
commit 0653ec9564
23 changed files with 44 additions and 43 deletions
+1 -1
View File
@@ -146,7 +146,7 @@ public:
{
// Account for our custom header's size in the decompress arguments.
int result = LZ4_decompress_safe(data + headersize, rawbytes,
dataSize - headersize, rawsize);
(int) (dataSize - headersize), rawsize);
if (result < 0)
{