summaryrefslogtreecommitdiffstats
path: root/libebl/eblbsspltp.c
diff options
context:
space:
mode:
Diffstat (limited to 'libebl/eblbsspltp.c')
-rw-r--r--libebl/eblbsspltp.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libebl/eblbsspltp.c b/libebl/eblbsspltp.c
index 48e19df7..62a4bb01 100644
--- a/libebl/eblbsspltp.c
+++ b/libebl/eblbsspltp.c
@@ -20,8 +20,9 @@
bool
-ebl_bss_plt_p (ebl)
+ebl_bss_plt_p (ebl, ehdr)
Ebl *ebl;
+ GElf_Ehdr *ehdr;
{
- return ebl == NULL ? false : ebl->bss_plt_p (ebl->elf);
+ return ebl == NULL ? false : ebl->bss_plt_p (ebl->elf, ehdr);
}