diff options
author | Austin Foxley <austinf@cetoncorp.com> | 2009-10-14 17:21:46 -0700 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2009-10-14 17:24:58 -0700 |
commit | 21cec43543081b47f9f7d5860af44d04c92746cd (patch) | |
tree | a6665189a2f4eea8512480e8de847fa6d2d39af2 /ldso/ldso/avr32/elfinterp.c | |
parent | 75aad665ccf97c139a437b26c44d15b71ce0db33 (diff) |
ldso: fixup all the rest of the calls to _dl_find_hash
With TLS _dl_find_hash grew an extra param.
These archs don't have TLS reloc support yet, but they do need to
compile without it.
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'ldso/ldso/avr32/elfinterp.c')
-rw-r--r-- | ldso/ldso/avr32/elfinterp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ldso/ldso/avr32/elfinterp.c b/ldso/ldso/avr32/elfinterp.c index 813179e64..797f8513e 100644 --- a/ldso/ldso/avr32/elfinterp.c +++ b/ldso/ldso/avr32/elfinterp.c @@ -138,7 +138,7 @@ static int _dl_do_reloc(struct elf_resolve *tpnt, struct dyn_elf *scope, symbol_addr = (unsigned long) _dl_find_hash(strtab + symtab[symtab_index].st_name, tpnt->symbol_scope, tpnt, - elf_machine_type_class(reloc_type)); + elf_machine_type_class(reloc_type), NULL); /* Allow undefined references to weak symbols */ if (!symbol_addr && |