Skip to content

Commit

Permalink
Fix: 2021-12-04
Browse files Browse the repository at this point in the history
  • Loading branch information
horsicq committed Dec 4, 2021
1 parent 3acee8f commit 7b595f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xelf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3133,9 +3133,9 @@ QList<XELF::NOTE> XELF::getNotes(QList<XELF_DEF::Elf_Phdr> *pListProgramHeaders)

bool bIsBigEndian=isBigEndian();

int nNumberOfNotes=listNotes.count();
qint32 nNumberOfNotes=listNotes.count();

for(int i=0;i<nNumberOfNotes;i++)
for(qint32 i=0;i<nNumberOfNotes;i++)
{
qint64 nOffset=listNotes.at(i).p_offset;
qint64 nSize=listNotes.at(i).p_filesz;
Expand Down

0 comments on commit 7b595f2

Please sign in to comment.