diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-07-11 23:25:00 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-07-11 23:25:00 +0000 |
commit | 84cc817ba5e546e0504767a1f7f286b17a838968 (patch) | |
tree | c7ca31f585df6077eb66cf976cf8668e88fd98e4 /ldso/include | |
parent | e55e48a9f6d2a77c501315dde907b1d14eeabc60 (diff) |
force hash buckets to work off of 32bit quantities
Diffstat (limited to 'ldso/include')
-rw-r--r-- | ldso/include/dl-hash.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ldso/include/dl-hash.h b/ldso/include/dl-hash.h index 27177542b..3e6925432 100644 --- a/ldso/include/dl-hash.h +++ b/ldso/include/dl-hash.h @@ -33,14 +33,14 @@ struct elf_resolve{ unsigned short int init_flag; unsigned long rtld_flags; /* RTLD_GLOBAL, RTLD_NOW etc. */ unsigned int nbucket; - unsigned long * elf_buckets; + uint32_t *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; - unsigned long * chains; + uint32_t *chains; unsigned long dynamic_info[DYNAMIC_SIZE]; unsigned long n_phent; |