diff options
author | Roland McGrath <roland@redhat.com> | 2007-09-27 07:31:33 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 2007-09-27 07:31:33 +0000 |
commit | c76f0b05676f6207affbfd85e75063db3b6eeccf (patch) | |
tree | 8ccc124a5908a03d34113a7dcdeb2abad7d71522 /libelf/gelf_xlate.c | |
parent | cb6d865011ad98a8ac2018f072f396a2268739ca (diff) | |
download | elfutils-c76f0b05676f6207affbfd85e75063db3b6eeccf.tar.gz |
2007-09-27 Roland McGrath <roland@redhat.com>
* alpha_retval.c: Use dwarf_attr_integrate and dwarf_hasattr_integrate.
* i386_retval.c: Likewise.
* ia64_retval.c: Likewise.
* ppc64_retval.c: Likewise.
* ppc_retval.c: Likewise.
* s390_retval.c: Likewise.
* sparc_retval.c: Likewise.
* x86_64_retval.c: Likewise.
Diffstat (limited to 'libelf/gelf_xlate.c')
-rw-r--r-- | libelf/gelf_xlate.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libelf/gelf_xlate.c b/libelf/gelf_xlate.c index 080474fd..a4134c30 100644 --- a/libelf/gelf_xlate.c +++ b/libelf/gelf_xlate.c @@ -185,6 +185,7 @@ union unaligned do not contain records of only one type. */ #include "version_xlate.h" #include "gnuhash_xlate.h" +#include "note_xlate.h" /* Now the externally visible table with the function pointers. */ @@ -213,7 +214,7 @@ const xfct_t __elf_xfctstom[EV_NUM - 1][EV_NUM - 1][ELFCLASSNUM - 1][ELF_T_NUM] [ELF_T_VDAUX] = elf_cvt_Verdef, \ [ELF_T_VNEED] = elf_cvt_Verneed, \ [ELF_T_VNAUX] = elf_cvt_Verneed, \ - [ELF_T_NHDR] = ElfW2(Bits, cvt_Nhdr), \ + [ELF_T_NHDR] = elf_cvt_note, \ [ELF_T_SYMINFO] = ElfW2(Bits, cvt_Syminfo), \ [ELF_T_MOVE] = ElfW2(Bits, cvt_Move), \ [ELF_T_LIB] = ElfW2(Bits, cvt_Lib), \ |