summaryrefslogtreecommitdiffstats
path: root/libebl/eblbsspltp.c
diff options
context:
space:
mode:
Diffstat (limited to 'libebl/eblbsspltp.c')
-rw-r--r--libebl/eblbsspltp.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/libebl/eblbsspltp.c b/libebl/eblbsspltp.c
index 080e7c5c..95a5d8af 100644
--- a/libebl/eblbsspltp.c
+++ b/libebl/eblbsspltp.c
@@ -1,5 +1,5 @@
/* Check if backend uses a bss PLT.
- Copyright (C) 2005 Red Hat, Inc.
+ Copyright (C) 2005, 2014 Red Hat, Inc.
This file is part of elfutils.
This file is free software; you can redistribute it and/or modify
@@ -35,9 +35,8 @@
bool
-ebl_bss_plt_p (ebl, ehdr)
+ebl_bss_plt_p (ebl)
Ebl *ebl;
- GElf_Ehdr *ehdr;
{
- return ebl == NULL ? false : ebl->bss_plt_p (ebl->elf, ehdr);
+ return ebl == NULL ? false : ebl->bss_plt_p (ebl->elf);
}