diff options
| author | Ulrich Drepper <[email protected]> | 2005-08-13 17:50:47 +0000 |
|---|---|---|
| committer | Ulrich Drepper <[email protected]> | 2005-08-13 17:50:47 +0000 |
| commit | c5c33a6a2ce5ea400ac5d06b3c2f15808f68b803 (patch) | |
| tree | 766e4fa596159c98baa73efde0730ea49f266d8e /libebl/ebl_check_special_symbol.c | |
| parent | ad11217601d90e4bb79e4305541e7ecd9ec13182 (diff) | |
Minor cleanups of last changes to elflint and libebl to support
clean ppc/ppc64 handling.
Diffstat (limited to 'libebl/ebl_check_special_symbol.c')
| -rw-r--r-- | libebl/ebl_check_special_symbol.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libebl/ebl_check_special_symbol.c b/libebl/ebl_check_special_symbol.c index 8825ee3f..176e9a6c 100644 --- a/libebl/ebl_check_special_symbol.c +++ b/libebl/ebl_check_special_symbol.c @@ -20,8 +20,9 @@ bool -ebl_check_special_symbol (ebl, sym, name, destshdr) +ebl_check_special_symbol (ebl, ehdr, sym, name, destshdr) Ebl *ebl; + GElf_Ehdr *ehdr; const GElf_Sym *sym; const char *name; const GElf_Shdr *destshdr; @@ -29,5 +30,5 @@ ebl_check_special_symbol (ebl, sym, name, destshdr) if (ebl == NULL) return false; - return ebl->check_special_symbol (ebl->elf, sym, name, destshdr); + return ebl->check_special_symbol (ebl->elf, ehdr, sym, name, destshdr); } |
