summaryrefslogtreecommitdiffstats
path: root/libebl/ebl_check_special_symbol.c
diff options
context:
space:
mode:
authorUlrich Drepper <[email protected]>2005-08-13 17:50:47 +0000
committerUlrich Drepper <[email protected]>2005-08-13 17:50:47 +0000
commitc5c33a6a2ce5ea400ac5d06b3c2f15808f68b803 (patch)
tree766e4fa596159c98baa73efde0730ea49f266d8e /libebl/ebl_check_special_symbol.c
parentad11217601d90e4bb79e4305541e7ecd9ec13182 (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.c5
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);
}