mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-20 10:15:21 -04:00
Fix compiler warning, closes #121
This commit is contained in:
parent
3395cc7a1a
commit
912a1b25b2
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ LzmaCompress(
|
|||
|
||||
if (*DestinationSize < destLen)
|
||||
{
|
||||
*DestinationSize = destLen;
|
||||
*DestinationSize = (UINTN)destLen;
|
||||
return ERR_BUFFER_TOO_SMALL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue