diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-12-11 15:27:39 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-12-11 15:27:39 +0000 |
commit | 486fa0b7d4358f52bb885d9177db196478ba980b (patch) | |
tree | d13dad96b642e1b9e2a57ed8eadde100af5aa384 | |
parent | bc15f0f8141be82f35b7ee2cbf757482bc32b7c9 (diff) | |
download | glibc-486fa0b7d4358f52bb885d9177db196478ba980b.tar.gz glibc-486fa0b7d4358f52bb885d9177db196478ba980b.tar.xz glibc-486fa0b7d4358f52bb885d9177db196478ba980b.zip |
Update.
* sysdeps/mips/dl-machine.h (elf_machine_rel): Fixl_addr parameter type. Reported by job bogan <job@piquin.uchicago.edu>.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | sysdeps/mips/dl-machine.h | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 8dcc4948f9..e42d5e2dd0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 1998-12-11 Ulrich Drepper <drepper@cygnus.com> + * sysdeps/mips/dl-machine.h (elf_machine_rel): Fixl_addr parameter + type. Reported by job bogan <job@piquin.uchicago.edu>. + * sysdeps/unix/opendir.c (__opendir): Use __xstat instead of __stat. diff --git a/sysdeps/mips/dl-machine.h b/sysdeps/mips/dl-machine.h index 5f6e12752e..77b8c4e18f 100644 --- a/sysdeps/mips/dl-machine.h +++ b/sysdeps/mips/dl-machine.h @@ -23,7 +23,7 @@ #define ELF_MACHINE_NAME "MIPS" -#define ELF_MACHINE_NO_PLT +#define ELF_MACHINE_NO_PLT #include <assert.h> #include <entry.h> @@ -577,7 +577,7 @@ elf_machine_rel (struct link_map *map, const ElfW(Rel) *reloc, } static inline void -elf_machine_lazy_rel (Elf32_addr l_addr, const ElfW(Rel) *reloc) +elf_machine_lazy_rel (ElfW(Addr) l_addr, const ElfW(Rel) *reloc) { /* Do nothing. */ } |