diff options
author | Mark Mitchell <mark@codesourcery.com> | 1999-07-11 09:46:10 +0000 |
---|---|---|
committer | Mark Mitchell <mark@codesourcery.com> | 1999-07-11 09:46:10 +0000 |
commit | 2848824236c23a16170dc4fa32779219e686c2b2 (patch) | |
tree | 83717942b844166e4c58a50f402150afa23f5f24 /bfd | |
parent | 9ebbd33e6f697c41861bdf9f3da0e4ffc5507cee (diff) | |
download | gdb-2848824236c23a16170dc4fa32779219e686c2b2.zip gdb-2848824236c23a16170dc4fa32779219e686c2b2.tar.gz gdb-2848824236c23a16170dc4fa32779219e686c2b2.tar.bz2 |
Fix typo in previous change.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/elf32-mips.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elf32-mips.c b/bfd/elf32-mips.c index ec53e92..99833b7 100644 --- a/bfd/elf32-mips.c +++ b/bfd/elf32-mips.c @@ -277,8 +277,8 @@ typedef enum { #else #define MIPS_ELF_ADD_DYNAMIC_ENTRY(info, tag, val) \ (ABI_64_P (elf_hash_table (info)->dynobj) \ - ? bfd_elf64_add_dynamic_entry (info, tag, val) \ - : (abort (), false)) + : (abort (), false) \ + ? bfd_elf32_add_dynamic_entry (info, tag, val)) #endif /* The number of local .got entries we reserve. */ |