Version 0.15.0.1

- Some type conversions to remove warnings on 64 bit compilation
This commit is contained in:
Nikolaj Schlej 2014-01-09 15:06:12 +00:00
parent ead41ba5bb
commit 9665d0bcff
3 changed files with 17 additions and 17 deletions

View file

@ -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;