diff options
author | Roland McGrath <roland@gnu.org> | 2003-10-01 07:15:10 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2003-10-01 07:15:10 +0000 |
commit | f28c14d69ae7f3de1f13db3e268259280e49f4f8 (patch) | |
tree | f2343c8ae78d056116260f702397684080791b78 /elf | |
parent | d057b5e76c240e3475ad12f36ca95c118c8a6fe9 (diff) | |
download | glibc-f28c14d69ae7f3de1f13db3e268259280e49f4f8.tar glibc-f28c14d69ae7f3de1f13db3e268259280e49f4f8.tar.gz glibc-f28c14d69ae7f3de1f13db3e268259280e49f4f8.tar.bz2 glibc-f28c14d69ae7f3de1f13db3e268259280e49f4f8.zip |
* elf/rtld.c (dl_main): Add cast in last change.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/rtld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/rtld.c b/elf/rtld.c index 69238399b5..4291f18993 100644 --- a/elf/rtld.c +++ b/elf/rtld.c @@ -1173,7 +1173,7 @@ of this helper program; chances are you did not intend to run this program.\n\ elf_get_dynamic_info (l, dyn_temp); _dl_setup_hash (l); l->l_relocated = 1; - l->l_map_start = GL(dl_sysinfo_dso); + l->l_map_start = (ElfW(Addr)) GL(dl_sysinfo_dso); /* Now that we have the info handy, use the DSO image's soname so this object can be looked up by name. */ |