Skip to content

Commit

Permalink
Fix merge error from std::uint refactorization
Browse files Browse the repository at this point in the history
  • Loading branch information
HoundThe authored and PeterMatula committed Aug 30, 2021
1 parent f16a39b commit d439db3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fileformat/file_format/pe/pe_format.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3198,7 +3198,7 @@ bool PeFormat::isDotNet() const
else if (!isDll())
{ // If 32 bit check if first 2 bytes at entry point are 0xFF 0x25

unsigned long long entryAddr = 0;
std::uint64_t entryAddr = 0;
if (!getEpAddress(entryAddr))
{
return false;
Expand Down

0 comments on commit d439db3

Please sign in to comment.