mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-13 06:34:42 -04:00
Version 0.15.0.1
- Some type conversions to remove warnings on 64 bit compilation
This commit is contained in:
parent
ead41ba5bb
commit
9665d0bcff
3 changed files with 17 additions and 17 deletions
|
@ -1242,7 +1242,7 @@ UINT8 FfsEngine::create(const QModelIndex & index, const UINT8 type, const QByte
|
|||
if (model->type(parent) != File && model->type(parent) != Section)
|
||||
return ERR_INVALID_SECTION;
|
||||
|
||||
if (header.size() < sizeof(EFI_COMMON_SECTION_HEADER))
|
||||
if (header.size() < (int) sizeof(EFI_COMMON_SECTION_HEADER))
|
||||
return ERR_INVALID_SECTION;
|
||||
|
||||
QByteArray newHeader = header;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue