* sysdeps/alpha/dl-machine.h (elf_machine_rela): Pass 0 instead of
	NULL to elf_machine_fixup_plt t argument to silence GCC.
This commit is contained in:
Andreas Jaeger 2000-07-18 14:55:31 +00:00
parent 80f41baaef
commit 9f791dcf5d
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2000-07-18 Andreas Jaeger <aj@suse.de>
* sysdeps/alpha/dl-machine.h (elf_machine_rela): Pass 0 instead of
NULL to elf_machine_fixup_plt t argument to silence GCC.
* include/string.h: Add prototype for __memchr.
* sysdeps/alpha/memchr.S: Fix copy & error in weak_alias.

View File

@ -497,7 +497,7 @@ elf_machine_rela (struct link_map *map,
if (r_type == R_ALPHA_GLOB_DAT)
*reloc_addr = sym_value;
else if (r_type == R_ALPHA_JMP_SLOT)
elf_machine_fixup_plt (map, NULL, reloc, reloc_addr, sym_value);
elf_machine_fixup_plt (map, 0, reloc, reloc_addr, sym_value);
else if (r_type == R_ALPHA_REFQUAD)
{
void *reloc_addr_1 = reloc_addr;