mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-14 07:04:49 -04:00
Fix meson builds
This commit is contained in:
parent
7eb565d788
commit
6c695c12a7
2 changed files with 2 additions and 1 deletions
|
@ -130,7 +130,7 @@ USTATUS NvramParser::parseNvarStore(const UModelIndex & index)
|
|||
if (previousEntry == entry)
|
||||
break;
|
||||
|
||||
if (previousEntry->next() + previousEntry->offset() == entry->offset()) { // Previous link is present and valid
|
||||
if ((UINT32)previousEntry->next() + (UINT32)previousEntry->offset() == (UINT32)entry->offset()) { // Previous link is present and valid
|
||||
prevEntryIndex = index.model()->index(i, 0, index);
|
||||
// Make sure that we are linking to a valid entry
|
||||
NVAR_ENTRY_PARSING_DATA pd = readUnaligned((NVAR_ENTRY_PARSING_DATA*)model->parsingData(prevEntryIndex).constData());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue