Fix compiler warning, closes #121

This commit is contained in:
vit9696 2018-05-07 21:37:44 +03:00
parent 3395cc7a1a
commit 912a1b25b2

View file

@ -74,7 +74,7 @@ LzmaCompress(
if (*DestinationSize < destLen) if (*DestinationSize < destLen)
{ {
*DestinationSize = destLen; *DestinationSize = (UINTN)destLen;
return ERR_BUFFER_TOO_SMALL; return ERR_BUFFER_TOO_SMALL;
} }