diff options
author | John Polstra <jdp@FreeBSD.org> | 1998-09-06 22:57:45 +0000 |
---|---|---|
committer | John Polstra <jdp@FreeBSD.org> | 1998-09-06 22:57:45 +0000 |
commit | f3c0afbfb071c83ff0884e9cec5fbd4126b3b79b (patch) | |
tree | 5c46ac1ee102130859f788aeb927e8086985cfe7 /contrib/binutils/include/elf/internal.h | |
parent | 11ab2a9095033acf8daff79b3183c5f28a5e9974 (diff) | |
download | src-f3c0afbfb071c83ff0884e9cec5fbd4126b3b79b.tar.gz src-f3c0afbfb071c83ff0884e9cec5fbd4126b3b79b.zip |
Notes
Diffstat (limited to 'contrib/binutils/include/elf/internal.h')
-rw-r--r-- | contrib/binutils/include/elf/internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/binutils/include/elf/internal.h b/contrib/binutils/include/elf/internal.h index bb849d6219a8..6540310626d9 100644 --- a/contrib/binutils/include/elf/internal.h +++ b/contrib/binutils/include/elf/internal.h @@ -43,8 +43,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ typedef struct elf_internal_ehdr { unsigned char e_ident[EI_NIDENT]; /* ELF "magic number" */ bfd_vma e_entry; /* Entry point virtual address */ - bfd_signed_vma e_phoff; /* Program header table file offset */ - bfd_signed_vma e_shoff; /* Section header table file offset */ + bfd_size_type e_phoff; /* Program header table file offset */ + bfd_size_type e_shoff; /* Section header table file offset */ unsigned long e_version; /* Identifies object file version */ unsigned long e_flags; /* Processor-specific flags */ unsigned short e_type; /* Identifies object file type */ |