diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-07-13 01:35:00 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-07-13 01:35:00 +0000 |
commit | 43346101c5bbd80979dc0fa5b2e5587eb6c844e6 (patch) | |
tree | e3a00bfc1a5ab75ee7958068ae30f701aa916e5a /ldso/include | |
parent | 8b3f9257b81c322715ba1d28339ecdf64489f8cf (diff) |
use Elf32_Word instead of uint32_t since that is what the ELF spec refers to
Diffstat (limited to 'ldso/include')
-rw-r--r-- | ldso/include/dl-hash.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ldso/include/dl-hash.h b/ldso/include/dl-hash.h index 3e6925432..162c7b425 100644 --- a/ldso/include/dl-hash.h +++ b/ldso/include/dl-hash.h @@ -32,15 +32,15 @@ struct elf_resolve{ unsigned short usage_count; unsigned short int init_flag; unsigned long rtld_flags; /* RTLD_GLOBAL, RTLD_NOW etc. */ - unsigned int nbucket; - uint32_t *elf_buckets; + Elf32_Word nbucket; + Elf32_Word *elf_buckets; struct init_fini_list *init_fini; struct init_fini_list *rtld_local; /* keep tack of RTLD_LOCAL libs in same group */ /* * These are only used with ELF style shared libraries */ - unsigned long nchain; - uint32_t *chains; + Elf32_Word nchain; + Elf32_Word *chains; unsigned long dynamic_info[DYNAMIC_SIZE]; unsigned long n_phent; |