diff options
author | Chris Metcalf <cmetcalf@tilera.com> | 2014-04-04 15:03:47 -0400 |
---|---|---|
committer | Chris Metcalf <cmetcalf@tilera.com> | 2014-04-04 15:03:47 -0400 |
commit | d42f3448a7af9c55f2193450964772c7c2a0d29b (patch) | |
tree | 5d66cded12e2480b429805aea7348140f6baaa6b /sysdeps | |
parent | 1c21d115e3e47cd66007341de4bae5c4b0a2d547 (diff) | |
download | glibc-d42f3448a7af9c55f2193450964772c7c2a0d29b.tar.gz glibc-d42f3448a7af9c55f2193450964772c7c2a0d29b.tar.xz glibc-d42f3448a7af9c55f2193450964772c7c2a0d29b.zip |
tile: Fix cut-and-paste bug in commit fcccd5128.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/tile/dl-runtime.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/tile/dl-runtime.c b/sysdeps/tile/dl-runtime.c index 8bc2911850..bcc00bc74b 100644 --- a/sysdeps/tile/dl-runtime.c +++ b/sysdeps/tile/dl-runtime.c @@ -152,8 +152,8 @@ sim_dlclose (ElfW(Addr) map_start) } void internal_function -_dl_unmap (struct link_map *l) +_dl_unmap (struct link_map *map) { - sim_dlclose (l->l_map_start); + sim_dlclose (map->l_map_start); _dl_unmap_segments (map); } |