Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpd002 committed Aug 3, 2023
1 parent a4d5045 commit 850348e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/ELF.h
Original file line number Diff line number Diff line change
Expand Up @@ -172,9 +172,9 @@ class CELF
return symbolTable->nSize / sizeof(SYMBOL);
}

typedef std::function<void(const SYMBOL&, uint8, uint8, const char*)> SymbolEnumarationCallback;
typedef std::function<void(const SYMBOL&, uint8, uint8, const char*)> SymbolEnumerationCallback;

void EnumerateSymbols(const SymbolEnumarationCallback& callback) const
void EnumerateSymbols(const SymbolEnumerationCallback& callback) const
{
auto symbolTable = FindSection(".symtab");
if(!symbolTable) return;
Expand Down

0 comments on commit 850348e

Please sign in to comment.