diff options
Diffstat (limited to 'elf/dl-lookup.c')
-rw-r--r-- | elf/dl-lookup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/dl-lookup.c b/elf/dl-lookup.c index ef953c5475..de5ecf5d62 100644 --- a/elf/dl-lookup.c +++ b/elf/dl-lookup.c @@ -110,8 +110,8 @@ do_lookup (const char *undef_name, unsigned long int hash, map->l_name[0] ? map->l_name : _dl_argv[0], "\n", NULL); - symtab = ((void *) map->l_addr + map->l_info[DT_SYMTAB]->d_un.d_ptr); - strtab = ((void *) map->l_addr + map->l_info[DT_STRTAB]->d_un.d_ptr); + symtab = (const void *) map->l_info[DT_SYMTAB]->d_un.d_ptr; + strtab = (const void *) map->l_info[DT_STRTAB]->d_un.d_ptr; verstab = map->l_versyms; /* Search the appropriate hash bucket in this object's symbol table |