Fix a compiler warning

This commit is contained in:
vit9696 2018-05-07 20:50:56 +03:00
parent ec38091599
commit b35193b3df
2 changed files with 3 additions and 3 deletions

View file

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